diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b36e5f674ea9572e4db0e2adbb0acb8d48d75690..abddb645eb2fe0dd82af8c4feed98c9bc2f8f300 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,6 +20,10 @@ variables: IBM_BUILD_SUBDIR: provider/indexer-ibm IBM_INT_TEST_SUBDIR: testing/indexer-test-ibm + + IBM_HELM_CONFIG_PATH: devops/ibm/ibm-indexer-config + IBM_HELM_DEPLOY_PATH: devops/ibm/ibm-indexer-deploy + AZURE_SERVICE: indexer AZURE_BUILD_SUBDIR: provider/indexer-azure diff --git a/NOTICE b/NOTICE index 86de2c214ad5652ef7d52dd43e4f6c5a661dcc04..19601efd3534dac53f8ee597d465708369b38d5c 100644 --- a/NOTICE +++ b/NOTICE @@ -559,6 +559,7 @@ The following software have components provided under the terms of this license: - OpenCensus (from https://github.com/census-instrumentation/opencensus-java) - PWDB :: Database (from https://repo1.maven.org/maven2/org/linguafranca/pwdb/database) - Plexus Common Utilities (from http://plexus.codehaus.org/plexus-utils, https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils) +- Plexus I18N Component (from https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-i18n) - Plexus Velocity Component (from https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-velocity) - PostgreSQL JDBC Driver - PowerMock (from http://www.powermock.org, https://repo1.maven.org/maven2/org/powermock/powermock-api-mockito) @@ -708,8 +709,21 @@ The following software have components provided under the terms of this license: - spring-security-oauth2-jose (from http://spring.io/spring-security, https://spring.io/projects/spring-security, https://spring.io/spring-security) - spring-security-test (from http://spring.io/spring-security, https://spring.io/projects/spring-security, https://spring.io/spring-security) - springdoc-openapi-common (from https://repo1.maven.org/maven2/org/springdoc/springdoc-openapi-common) -- springdoc-openapi-ui (from https://github.com/springdoc/springdoc-openapi, https://repo1.maven.org/maven2/org/springdoc/springdoc-openapi-ui) +- springdoc-openapi-ui (from https://repo1.maven.org/maven2/org/springdoc/springdoc-openapi-ui) - springdoc-openapi-webmvc-core (from https://repo1.maven.org/maven2/org/springdoc/springdoc-openapi-webmvc-core) +- springfox-bean-validators (from https://github.com/springfox/springfox) +- springfox-boot-starter (from https://github.com/springfox/springfox) +- springfox-core (from https://github.com/springfox/springfox) +- springfox-data-rest (from https://github.com/springfox/springfox) +- springfox-oas (from https://github.com/springfox/springfox) +- springfox-schema (from https://github.com/springfox/springfox) +- springfox-spi (from https://github.com/springfox/springfox) +- springfox-spring-web (from https://github.com/springfox/springfox) +- springfox-spring-webflux (from https://github.com/springfox/springfox) +- springfox-spring-webmvc (from https://github.com/springfox/springfox) +- springfox-swagger-common (from https://github.com/springfox/springfox) +- springfox-swagger-ui (from https://github.com/springfox/springfox) +- springfox-swagger2 (from https://github.com/springfox/springfox) - swagger-annotations (from https://repo1.maven.org/maven2/io/swagger/core/v3/swagger-annotations, https://repo1.maven.org/maven2/io/swagger/swagger-annotations) - swagger-core (from https://repo1.maven.org/maven2/io/swagger/core/v3/swagger-core, https://repo1.maven.org/maven2/io/swagger/swagger-core) - swagger-jaxrs (from https://repo1.maven.org/maven2/io/swagger/swagger-jaxrs) diff --git a/devops/ibm/ibm-indexer-config/.helmignore b/devops/ibm/ibm-indexer-config/.helmignore new file mode 100644 index 0000000000000000000000000000000000000000..0e8a0eb36f4ca2c939201c0d54b5d82a1ea34778 --- /dev/null +++ b/devops/ibm/ibm-indexer-config/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/devops/ibm/ibm-indexer-config/Chart.yaml b/devops/ibm/ibm-indexer-config/Chart.yaml new file mode 100644 index 0000000000000000000000000000000000000000..df4f7d8e26f40d85cc5fdea15cd6383292f7a34d --- /dev/null +++ b/devops/ibm/ibm-indexer-config/Chart.yaml @@ -0,0 +1,24 @@ +apiVersion: v2 +name: ibm-indexer-config +description: A Helm chart for Kubernetes + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 0.1.0 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +# It is recommended to use it with quotes. +appVersion: "1.16.0" diff --git a/devops/ibm/ibm-indexer-config/templates/_helpers.tpl b/devops/ibm/ibm-indexer-config/templates/_helpers.tpl new file mode 100644 index 0000000000000000000000000000000000000000..4d8b70b5b00011b839ea99a5d7b161cec42a10e6 --- /dev/null +++ b/devops/ibm/ibm-indexer-config/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "ibm-indexer-config.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "ibm-indexer-config.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "ibm-indexer-config.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "ibm-indexer-config.labels" -}} +helm.sh/chart: {{ include "ibm-indexer-config.chart" . }} +{{ include "ibm-indexer-config.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "ibm-indexer-config.selectorLabels" -}} +app.kubernetes.io/name: {{ include "ibm-indexer-config.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "ibm-indexer-config.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "ibm-indexer-config.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/devops/ibm/ibm-indexer-config/templates/configmap.yaml b/devops/ibm/ibm-indexer-config/templates/configmap.yaml new file mode 100644 index 0000000000000000000000000000000000000000..fbb4ea24338a5cf021c1c5307ca12692ca1c94a6 --- /dev/null +++ b/devops/ibm/ibm-indexer-config/templates/configmap.yaml @@ -0,0 +1,80 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: "{{ .Values.conf.configmap }}" +data: +#log-and-common + LOG_LEVEL: "{{ .Values.data.logLevel }}" + LOG_PREFIX: "{{ .Values.data.logPrefix }}" + logging.level.org.opengroup.osdu: "{{ .Values.data.loggingLevelOsdu }}" + logging.level.org.springframework.web: "{{ .Values.data.loggingLevelSpring }}" + JAVA_APP_JAR: "{{ .Values.data.javaAppJar }}" + server.servlet.context-path: "{{ .Values.data.contextPath }}" + server.port: "{{ .Values.data.serverPort }}" + ibm.env.prefix: "{{ .Values.data.envPrefix }}" + ibm.env.prefix_project: "{{ .Values.data.envPrefixProject }}" + spring.main.allow-bean-definition-overriding: "{{ .Values.data.beanDefOverriding }}" + cache.expiration: "{{ .Values.data.cacheExpiration }}" + cache.maxSize: "{{ .Values.data.cahceMaxSize }}" + ibm.health-check-uri: "{{ .Values.data.healthCheckUri }}" + +# Indexer api key + INDEXER_API_KEY: "{{ .Values.data.indexerApiKey }}" + + +# Elastic + ELASTIC_HOST: "{{ .Values.data.elasticHost }}" + ELASTIC_PORT: "{{ .Values.data.elasticPort }}" + ELASTIC_USER_PASSWORD: "{{ .Values.data.elasticUserPassword }}" + security.https.certificate.trust: "{{ .Values.data.ibmElasticSSLSecurity }}" + +# Keycloak + ibm.keycloak.endpoint_url: "keycloak-discovery:8080" + ibm.keycloak.realm: "{{ .Values.data.keycloakRealm }}" + ibm.keycloak.useremail: "{{ .Values.data.keycloakUserEmail }}" + ibm.keycloak.username: "{{ .Values.data.keycloakUsername }}" + ibm.keycloak.password: "{{ .Values.data.keycloakPassword }}" + ibm.keycloak.client_id: "{{ .Values.data.keycloakClientId }}" + ibm.keycloak.client_secret: "{{ .Values.data.keycloakClientSecret }}" + + +# AMQ + amqphub.amqp10jms.remote-url: "{{ .Values.data.amqpUrl }}" + amqphub.amqp10jms.username: "{{ .Values.data.amqpUsername }}" + amqphub.amqp10jms.password: "{{ .Values.data.amqpUserPassword }}" + INDEXER_QUEUE_HOST: "{{ .Values.data.amqpUrl }}" + indexer.queue.key: "{{ .Values.data.indexerQueueKey }}" + + storage_service_url: "http://{{ .Release.Name }}-ibm-storage-deploy:8080" + SCHEMA_HOST: "http://{{ .Release.Name }}-ibm-schema-deploy:8080/api/schema-service/v1/schema" + STORAGE_SCHEMA_HOST: "http://{{ .Release.Name }}-ibm-storage-deploy:8080/api/storage/v2/schemas" + STORAGE_QUERY_RECORD_HOST: "http://{{ .Release.Name }}-ibm-storage-deploy:8080/api/storage/v2/query/records" + STORAGE_QUERY_KINDS_HOST: "http://{{ .Release.Name }}-ibm-storage-deploy:8080/api/storage/v2/query/kinds" + STORAGE_QUERY_RECORD_FOR_CONVERSION_HOST: "http://{{ .Release.Name }}-ibm-storage-deploy:8080/api/storage/v2/query/records:batch" + STORAGE_RECORDS_BATCH_SIZE: "{{ .Values.data.storageRecordsBatchSize }}" + STORAGE_RECORDS_BY_KIND_BATCH_SIZE: "{{ .Values.data.storageRecordsByKindBatchSize }}" + +#db + + ibm.db.url: "http://{{ .Release.Name }}-couchdb:5984" + ibm.db.user: "{{ .Values.data.dbUser }}" + ibm.db.password: "{{ .Values.data.dbPassw }}" + + + + +#Authorization + AUTHORIZE_API: "http://{{ .Release.Name }}-ibm-entitlement-deploy:8080/api/entitlements/v2" + DEPLOYMENT_ENVIRONMENT: "{{ .Values.data.deployEnv }}" + +#tenant-validation + PARTITION_API: "http://{{ .Release.Name }}-ibm-partition-deploy:8080/api/partition/v1" + partition.keycloak.client_id: "{{ .Values.data.pKCClientId }}" + partition.keycloak.client_secert: "{{ .Values.data.pKCClientSecret }}" + partition.keycloak.grant_type: "{{ .Values.data.grantType }}" + partition.keycloak.password: "{{ .Values.data.pKCPassword }}" + partition.keycloak.realm: "{{ .Values.data.keycloakRealm }}" + partition.keycloak.url: "{{ .Values.data.pKCEndPointHost }}" + partition.keycloak.user: "{{ .Values.data.pKCUser }}" + partition.keycloak.accept_http: "{{ .Values.data.pKAcceptHttp }}" + tenantCache.exp.time.in.second: "{{ .Values.data.tenantCacheExpiryInSec }}" diff --git a/devops/ibm/ibm-indexer-config/values.yaml b/devops/ibm/ibm-indexer-config/values.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2f9e588ebb2af23500ff422b5f4d9ceac8c09837 --- /dev/null +++ b/devops/ibm/ibm-indexer-config/values.yaml @@ -0,0 +1,72 @@ +data: +# common + javaAppJar: "/deployments/*-spring-boot.jar" + serverPort: 8080 + contextPath: "/api/indexer/v2" + envPrefix: ibm-iks + envPrefixProject: ibm-ibm-build + +# log + logPrefix: indexer + loggingLevelOsdu: debug + loggingLevelSpring: debug + +# ibm + beanDefOverriding: true + healthCheckUri: "/api/indexer/v2/info,/api/indexer/v2/liveness_check,/api/indexer/v2/readiness_check" + +#authorization + #check cm template + authorizeAPI: http://TBD:8080/api/entitlements/v2 + deployEnv: CLOUD + +#elastic + elasticHost: elasticsearch-master + elasticPort: 9200 + elasticUserPassword: tbd + ibmElasticSSLSecurity: true + +#db + dbURL: http://tbd:5984 + dbUser: admin + dbPassw: tbd + + +#keycloack + keycloakUrl: tbd + keycloakRealm: OSDU + keycloakUserEmail: admin-sa@ibm.com + keycloakUsername: admin-sa + keycloakPassword: changeit + keycloakClientId: osdu-login + keycloakClientSecret: referenv + +# AmQP + amqpUrl: amqp://ex-aao-amqp-0-svc:5672 + amqpUsername: tbd + amqpUserPassword: tbd + indexerQueueKey: abcd + + + +#apikey + indexerApiKey: this_123_is_456_dev_789_key + storageRecordsBatchSize: 20 + storageRecordsByKindBatchSize: 100 + + +#tenant-validation + pKCEndPointHost: referenv + pKCClientId: partition-service + pKCClientSecret: referenv + grantType: password + pKCPassword: changeit + pKCUser: partition-service-admin + pKAcceptHttp: true + tenantCacheExpiryInSec: 10000 + #refer-cm-template + patitionAPI: refer-configmap-template + + +conf: + configmap: "indexer-config" diff --git a/devops/ibm/ibm-indexer-deploy/.helmignore b/devops/ibm/ibm-indexer-deploy/.helmignore new file mode 100644 index 0000000000000000000000000000000000000000..0e8a0eb36f4ca2c939201c0d54b5d82a1ea34778 --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/devops/ibm/ibm-indexer-deploy/Chart.yaml b/devops/ibm/ibm-indexer-deploy/Chart.yaml new file mode 100644 index 0000000000000000000000000000000000000000..270e8f2af7a4e8fbaa46a062f37c12c8db80dd86 --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/Chart.yaml @@ -0,0 +1,24 @@ +apiVersion: v2 +name: ibm-indexer-deploy +description: A Helm chart for Kubernetes + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 0.1.0 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +# It is recommended to use it with quotes. +appVersion: "1.16.0" diff --git a/devops/ibm/ibm-indexer-deploy/templates/NOTES.txt b/devops/ibm/ibm-indexer-deploy/templates/NOTES.txt new file mode 100644 index 0000000000000000000000000000000000000000..17e41226e61465e2a54025d7eb32b827919a1879 --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/templates/NOTES.txt @@ -0,0 +1,22 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "ibm-indexer-deploy.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "ibm-indexer-deploy.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "ibm-indexer-deploy.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "ibm-indexer-deploy.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT +{{- end }} diff --git a/devops/ibm/ibm-indexer-deploy/templates/_helpers.tpl b/devops/ibm/ibm-indexer-deploy/templates/_helpers.tpl new file mode 100644 index 0000000000000000000000000000000000000000..6131bd1301df206e60168af5bb4a164843f39a63 --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "ibm-indexer-deploy.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "ibm-indexer-deploy.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "ibm-indexer-deploy.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "ibm-indexer-deploy.labels" -}} +helm.sh/chart: {{ include "ibm-indexer-deploy.chart" . }} +{{ include "ibm-indexer-deploy.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "ibm-indexer-deploy.selectorLabels" -}} +app.kubernetes.io/name: {{ include "ibm-indexer-deploy.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "ibm-indexer-deploy.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "ibm-indexer-deploy.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/devops/ibm/ibm-indexer-deploy/templates/deployment.yaml b/devops/ibm/ibm-indexer-deploy/templates/deployment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5e3487a374195abc97dffadb6a6c52e97190f1be --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/templates/deployment.yaml @@ -0,0 +1,111 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "ibm-indexer-deploy.fullname" . }} + labels: + {{- include "ibm-indexer-deploy.labels" . | nindent 4 }} +spec: + {{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} + {{- end }} + selector: + matchLabels: + {{- include "ibm-indexer-deploy.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "ibm-indexer-deploy.selectorLabels" . | nindent 8 }} + sidecar.istio.io/inject: "{{ .Values.sidecarIstioInjected }}" + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "ibm-indexer-deploy.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + initContainers: + - name: {{ .Values.initimage.name }} + image: {{ .Values.initimage.initrepository }}:{{ .Values.initimage.tag }} + imagePullPolicy: {{ .Values.initimage.pullPolicy }} + command: ['sh', '-c', './health_probe.sh $(HEALTH_URI)/info && sleep 5'] + env: + - name: HEALTH_URI + valueFrom: + configMapKeyRef: + name: indexer-config + key: AUTHORIZE_API + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + env: + - name: amqphub.amqp10jms.password + valueFrom: + secretKeyRef: + key: AMQ_PASSWORD + name: ex-aao-credentials-secret + - name: amqphub.amqp10jms.username + valueFrom: + secretKeyRef: + key: AMQ_USER + name: ex-aao-credentials-secret + - name: partition.keycloak.client_secert + valueFrom: + secretKeyRef: + key: partition_service_secret_data + name: props-secret-generated-password + - name: ibm.db.password + valueFrom: + secretKeyRef: + key: adminPassword + name: {{ .Release.Name }}-couchdb + - name: partition.keycloak.url + valueFrom: + configMapKeyRef: + key: partition.keycloak.url + name: partition-config + - name: ibm.keycloak.endpoint_url + valueFrom: + configMapKeyRef: + key: partition.keycloak.url + name: partition-config + - name: ibm.keycloak.client_secret + valueFrom: + secretKeyRef: + key: osdu_login_secret_data + name: props-secret-generated-password + - name: ELASTIC_PASSWORD + valueFrom: + secretKeyRef: + key: password + name: elasticsearch-master-credentials + - name: ELASTIC_USER_PASSWORD + value: elastic:$(ELASTIC_PASSWORD) + envFrom: + - configMapRef: + name: "{{ .Values.conf.configmap }}" + ports: + - name: http + containerPort: 8080 + protocol: TCP + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/devops/ibm/ibm-indexer-deploy/templates/hpa.yaml b/devops/ibm/ibm-indexer-deploy/templates/hpa.yaml new file mode 100644 index 0000000000000000000000000000000000000000..06507950fe3080316378bfdb2ac6a10c58ccecc7 --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/templates/hpa.yaml @@ -0,0 +1,28 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "ibm-indexer-deploy.fullname" . }} + labels: + {{- include "ibm-indexer-deploy.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "ibm-indexer-deploy.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/devops/ibm/ibm-indexer-deploy/templates/ingress.yaml b/devops/ibm/ibm-indexer-deploy/templates/ingress.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6b9bd36db56e6c8027b838e1408cef0f86b11891 --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/templates/ingress.yaml @@ -0,0 +1,61 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "ibm-indexer-deploy.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }} + {{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }} + {{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}} + {{- end }} +{{- end }} +{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1 +{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1beta1 +{{- else -}} +apiVersion: extensions/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "ibm-indexer-deploy.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if and .Values.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }} + ingressClassName: {{ .Values.ingress.className }} + {{- end }} + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ .path }} + {{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }} + pathType: {{ .pathType }} + {{- end }} + backend: + {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }} + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- else }} + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} + {{- end }} + {{- end }} +{{- end }} diff --git a/devops/ibm/ibm-indexer-deploy/templates/istio-authzpolicy.yaml b/devops/ibm/ibm-indexer-deploy/templates/istio-authzpolicy.yaml new file mode 100644 index 0000000000000000000000000000000000000000..74f3dc0cdf5e9560e0f661b6365df844f0a668e8 --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/templates/istio-authzpolicy.yaml @@ -0,0 +1,22 @@ +apiVersion: security.istio.io/v1beta1 +kind: AuthorizationPolicy +metadata: + name: {{ .Values.conf.appName }}-authz-policy +spec: + selector: + matchLabels: + {{- include "ibm-indexer-deploy.selectorLabels" . | nindent 6 }} + action: DENY + rules: + - from: + - source: + notRequestPrincipals: + - '*' + to: + - operation: + notPaths: + - '*/v2/api-docs' + - /api/indexer/v2/info + - /api/indexer/v2/liveness_check + - /api/indexer/v2/readiness_check + - /api/indexer/v2/_dps/task-handlers/index-worker \ No newline at end of file diff --git a/devops/ibm/ibm-indexer-deploy/templates/istio-virtualservice.yaml b/devops/ibm/ibm-indexer-deploy/templates/istio-virtualservice.yaml new file mode 100644 index 0000000000000000000000000000000000000000..27c86101019c008f060f24c4d7d4727f583d7c86 --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/templates/istio-virtualservice.yaml @@ -0,0 +1,26 @@ +apiVersion: networking.istio.io/v1beta1 +kind: VirtualService +metadata: + name: {{ .Values.conf.appName }}-vs +spec: + gateways: + - osdu-gateway + hosts: + {{- if .Values.conf.domain }} + - {{ printf "osdu.%s" .Values.conf.domain | quote }} + {{- else if .Values.conf.loadbalancerIP}} + - {{ (index (lookup "v1" "Service" "istio-ingress" "istio-ingress").status.loadBalancer.ingress 0).ip }} + {{- else if .Values.conf.loadbalancerHN}} + - {{ (index (lookup "v1" "Service" "istio-ingress" "istio-ingress").status.loadBalancer.ingress 0).hostname }} + {{- else }} + - "*" + {{- end }} + http: + - match: + - uri: + prefix: /api/indexer/ + route: + - destination: + host: {{ .Release.Name }}-ibm-indexer-deploy + port: + number: 8080 diff --git a/devops/ibm/ibm-indexer-deploy/templates/service.yaml b/devops/ibm/ibm-indexer-deploy/templates/service.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d65bff5ff6c26b69edcb409d9db87e0c8f4cd576 --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "ibm-indexer-deploy.fullname" . }} + labels: + {{- include "ibm-indexer-deploy.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "ibm-indexer-deploy.selectorLabels" . | nindent 4 }} diff --git a/devops/ibm/ibm-indexer-deploy/templates/serviceaccount.yaml b/devops/ibm/ibm-indexer-deploy/templates/serviceaccount.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3ba7103eb20a74eb72d8b23a38fc73efcd6164a2 --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/templates/serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "ibm-indexer-deploy.serviceAccountName" . }} + labels: + {{- include "ibm-indexer-deploy.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/devops/ibm/ibm-indexer-deploy/templates/tests/test-connection.yaml b/devops/ibm/ibm-indexer-deploy/templates/tests/test-connection.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c8eec58820eb5e46597955e6a449483a09984855 --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "ibm-indexer-deploy.fullname" . }}-test-connection" + labels: + {{- include "ibm-indexer-deploy.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "ibm-indexer-deploy.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/devops/ibm/ibm-indexer-deploy/values.yaml b/devops/ibm/ibm-indexer-deploy/values.yaml new file mode 100644 index 0000000000000000000000000000000000000000..65e5dafd050929d2d8ecd9a2886026c768215bdf --- /dev/null +++ b/devops/ibm/ibm-indexer-deploy/values.yaml @@ -0,0 +1,91 @@ +# Default values for ibm-indexer-deploy. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 +sidecarIstioInjected: "true" + +image: + repository: community.opengroup.org:5555/osdu/platform/system/indexer-service/os-indexer-ibm + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "release-0.14-apr22" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" +initimage: + name: dependency-check + initrepository: community.opengroup.org:5555/osdu/platform/deployment-and-operations/ibm-osdu-provisioning/k8s-healthprobe + pullPolicy: IfNotPresent + tag: "v2.0" +conf: + configmap: "indexer-config" + appName: "indexer" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 8080 + +ingress: + enabled: false + className: "" + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: + - path: / + pathType: ImplementationSpecific + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 3 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {} diff --git a/docs/tutorial/PreviewFeatures.md b/docs/tutorial/PreviewFeatures.md new file mode 100644 index 0000000000000000000000000000000000000000..eaa06b7194ba3d5cb70bf8f01b8b0ae49995dfd3 --- /dev/null +++ b/docs/tutorial/PreviewFeatures.md @@ -0,0 +1,24 @@ +## Geoshape Decimation + +In order to improve indexing and search performance for documents with large geometry, the geo-shape of the following +GeoJSON types in the original shape attribute and virtual shape attribute if exists are decimated +by implementing Ramer–Douglas–Peucker algorithm: +- LineString +- MultiLineString +- Polygon +- MultiPolygon + +In order to reduce the risk when extended evaluation of the solution is still on going, a feature flag that is managed by +the Partition Service is applied to the solution. +Here is an example to enable this feature by setting the property "indexer-decimation-enabled" in a given data partition: +``` +{ + "indexer-decimation-enabled": { + "sensitive": false, + "value": "true" + } +} +``` + +If the property "indexer-decimation-enabled" is not created or the property value is set to "false" (String type) in the +given data partition, the geo-shape decimation will be ignored. diff --git a/indexer-core/pom.xml b/indexer-core/pom.xml index 86dd6bfc4dbd9632db5e3f0c4c064ba9a70e0c48..120a081c4e94b5df47bb960052063fb187f58b8e 100644 --- a/indexer-core/pom.xml +++ b/indexer-core/pom.xml @@ -17,7 +17,7 @@ <properties> <commons-beanutils.version>1.9.4</commons-beanutils.version> <spring-security-web.version>5.4.9</spring-security-web.version> - <gson.version>2.8.9</gson.version> + <gson.version>2.9.1</gson.version> <netty.version>4.1.70.Final</netty.version> <jackson-databind.version>2.13.2.2</jackson-databind.version> <jackson.version>2.13.2</jackson.version> @@ -103,7 +103,7 @@ <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-core</artifactId> - <version>9.0.45</version> + <version>9.0.67</version> </dependency> <dependency> diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/GeoJsonObject.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/GeoJsonObject.java similarity index 94% rename from indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/GeoJsonObject.java rename to indexer-core/src/main/java/org/opengroup/osdu/indexer/model/GeoJsonObject.java index 2f137a5fbb232400f51bb55ef5de4e40d3fd4909..5365f50238019bab406f1f6c0f38738bb758bd41 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/GeoJsonObject.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/GeoJsonObject.java @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.opengroup.osdu.indexer.model.geojson; +package org.opengroup.osdu.indexer.model; import java.io.Serializable; @@ -24,6 +24,7 @@ import com.fasterxml.jackson.annotation.JsonSubTypes.Type; import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.annotation.JsonTypeInfo.Id; import lombok.Data; +import org.opengroup.osdu.indexer.model.geojson.*; @Data @JsonTypeInfo(property = "type", use = Id.NAME) diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Feature.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Feature.java index 4d03bbe093b622e8fb08fd4659623fcb194feb0a..8b60b48632da4608fabd75e5e091dde48c9a250d 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Feature.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Feature.java @@ -16,6 +16,7 @@ package org.opengroup.osdu.indexer.model.geojson; import com.fasterxml.jackson.annotation.JsonInclude; import lombok.Data; +import org.opengroup.osdu.indexer.model.GeoJsonObject; import java.util.HashMap; import java.util.Map; diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/FeatureCollection.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/FeatureCollection.java index 1568a4250e753f336044e2911e8e30b6163487cd..7af74149750e8cef47d97a5592b31d396e3d6c33 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/FeatureCollection.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/FeatureCollection.java @@ -17,6 +17,7 @@ package org.opengroup.osdu.indexer.model.geojson; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; import com.fasterxml.jackson.databind.annotation.JsonSerialize; import lombok.Data; +import org.opengroup.osdu.indexer.model.GeoJsonObject; import org.opengroup.osdu.indexer.model.geojson.jackson.FeatureCollectionDeserializer; import org.opengroup.osdu.indexer.model.geojson.jackson.FeatureCollectionSerializer; diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Geometry.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Geometry.java index 99b0841ac5e9d1319ef7cca9ecd79ceb6928988b..e89dffde338c00730d2c02a51d05ef53cc955fc8 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Geometry.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Geometry.java @@ -14,10 +14,12 @@ package org.opengroup.osdu.indexer.model.geojson; +import org.opengroup.osdu.indexer.model.GeoJsonObject; + import java.util.ArrayList; import java.util.List; -public abstract class Geometry<T> extends GeoJsonObject { +public abstract class Geometry<T> extends GeoJsonObject implements IGeoJson { protected List<T> coordinates = new ArrayList<T>(); diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/GeometryCollection.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/GeometryCollection.java index 903ac08186b4dc12eb02b0e4792e5f43c3a934df..e564163358d3147398d0117059e5394f2ce24d1d 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/GeometryCollection.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/GeometryCollection.java @@ -14,16 +14,20 @@ package org.opengroup.osdu.indexer.model.geojson; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; import lombok.Data; +import org.opengroup.osdu.indexer.model.GeoJsonObject; +import org.opengroup.osdu.indexer.model.geojson.jackson.GeometryCollectionSerializer; import java.util.ArrayList; import java.util.Iterator; import java.util.List; @Data +@JsonSerialize(using = GeometryCollectionSerializer.class) public class GeometryCollection extends GeoJsonObject implements Iterable<GeoJsonObject> { - private List<GeoJsonObject> geometries = new ArrayList<GeoJsonObject>(); + private List<GeoJsonObject> geometries = new ArrayList<>(); @Override public Iterator<GeoJsonObject> iterator() { diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/IGeoJson.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/IGeoJson.java new file mode 100644 index 0000000000000000000000000000000000000000..62381f4f0243465978367f2f4c2fedf907d56881 --- /dev/null +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/IGeoJson.java @@ -0,0 +1,25 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.model.geojson; + +/** + * @author Andrei_Dalhikh + */ +public interface IGeoJson { + Object getCoordinates(); + + String getType(); +} diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/LineString.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/LineString.java index f01b2824b7aecc2a32c242bbd7fe73eaa30ecd80..25afbac1f95f4e4992d933b9995ddd4185103dad 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/LineString.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/LineString.java @@ -15,9 +15,11 @@ package org.opengroup.osdu.indexer.model.geojson; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; -import java.util.List; import lombok.NoArgsConstructor; import org.opengroup.osdu.indexer.model.geojson.jackson.CoordinatesDeserializer; +import org.opengroup.osdu.indexer.model.geojson.jackson.GeoJsonConstants; + +import java.util.List; @NoArgsConstructor public class LineString extends MultiPoint { @@ -31,4 +33,9 @@ public class LineString extends MultiPoint { public void setCoordinates(List<Position> coordinates) { super.setCoordinates(coordinates); } + + @Override + public String getType() { + return GeoJsonConstants.LINE_STRING; + } } diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiLineString.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiLineString.java index f8ea7ad479f6f2143ad17eb03a2823b9e7864eb6..170243c26ff4577af09a5f54d41d4a904b518c3e 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiLineString.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiLineString.java @@ -17,6 +17,7 @@ package org.opengroup.osdu.indexer.model.geojson; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; import java.util.List; import lombok.NoArgsConstructor; +import org.opengroup.osdu.indexer.model.geojson.jackson.GeoJsonConstants; import org.opengroup.osdu.indexer.model.geojson.jackson.MultiLineStringDeserializer; @NoArgsConstructor @@ -31,4 +32,9 @@ public class MultiLineString extends Geometry<List<Position>> { public void setCoordinates(List<List<Position>> coordinates) { super.setCoordinates(coordinates); } + + @Override + public String getType() { + return GeoJsonConstants.MULTI_LINE_STRING; + } } diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiPoint.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiPoint.java index e39802af80e9b63f832d20a8ea30a8645e26a825..2ba99f46811ad475eabc8fbb74c8fc30fbb71d5b 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiPoint.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiPoint.java @@ -18,6 +18,7 @@ import com.fasterxml.jackson.databind.annotation.JsonDeserialize; import java.util.List; import lombok.NoArgsConstructor; import org.opengroup.osdu.indexer.model.geojson.jackson.CoordinatesDeserializer; +import org.opengroup.osdu.indexer.model.geojson.jackson.GeoJsonConstants; @NoArgsConstructor public class MultiPoint extends Geometry<Position> { @@ -31,4 +32,9 @@ public class MultiPoint extends Geometry<Position> { public void setCoordinates(List<Position> coordinates) { super.setCoordinates(coordinates); } + + @Override + public String getType() { + return GeoJsonConstants.MULTI_POINT; + } } diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiPolygon.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiPolygon.java index ec6e2cf05271a35a7dfe01ccb0022bbcda5fd20e..6ed8fbbbc17d91a10d14779f92128bd391cfc47e 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiPolygon.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/MultiPolygon.java @@ -17,6 +17,7 @@ package org.opengroup.osdu.indexer.model.geojson; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; import java.util.List; import lombok.NoArgsConstructor; +import org.opengroup.osdu.indexer.model.geojson.jackson.GeoJsonConstants; import org.opengroup.osdu.indexer.model.geojson.jackson.MultiPolygonDeserializer; @NoArgsConstructor @@ -36,4 +37,9 @@ public class MultiPolygon extends Geometry<List<List<Position>>> { public void setCoordinates(List<List<List<Position>>> coordinates) { super.setCoordinates(coordinates); } + + @Override + public String getType() { + return GeoJsonConstants.MULTI_POLYGON; + } } diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Point.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Point.java index 9808209aa43e9eec7dd1c974dc5772aa9e7676a3..fcbb879f476e682aeca9638c251f06db6efaa603 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Point.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Point.java @@ -14,14 +14,19 @@ package org.opengroup.osdu.indexer.model.geojson; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; +import org.opengroup.osdu.indexer.model.GeoJsonObject; +import org.opengroup.osdu.indexer.model.geojson.jackson.GeoJsonConstants; +import org.opengroup.osdu.indexer.model.geojson.jackson.PointDeserializer; @Data @NoArgsConstructor @AllArgsConstructor -public class Point extends GeoJsonObject { +@JsonDeserialize(using = PointDeserializer.class) +public class Point extends GeoJsonObject implements IGeoJson { private Position coordinates; @@ -32,4 +37,9 @@ public class Point extends GeoJsonObject { public Point(double longitude, double latitude, double altitude) { coordinates = new Position(longitude, latitude, altitude); } + + @Override + public String getType() { + return GeoJsonConstants.POINT; + } } diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Polygon.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Polygon.java index 31461b421204d45bb9c00dbabd42922a8e9f0c43..bc8cc5df0a42e06b4612e47f8bbe05b37a2c9c98 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Polygon.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/Polygon.java @@ -16,6 +16,7 @@ package org.opengroup.osdu.indexer.model.geojson; import com.fasterxml.jackson.annotation.JsonIgnore; import lombok.NoArgsConstructor; +import org.opengroup.osdu.indexer.model.geojson.jackson.GeoJsonConstants; import java.util.Arrays; import java.util.List; @@ -31,6 +32,11 @@ public class Polygon extends Geometry<List<Position>> { add(Arrays.asList(polygon)); } + @Override + public String getType() { + return GeoJsonConstants.POLYGON; + } + public void setExteriorRing(List<Position> points) { if (coordinates.isEmpty()) { coordinates.add(0, points); diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/FeatureCollectionDeserializer.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/FeatureCollectionDeserializer.java index 390229859f06d35bbe3f4f5d27950521f7f614c6..45296f2d01d70bf264f9c4a1e42956e7bb6a65d9 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/FeatureCollectionDeserializer.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/FeatureCollectionDeserializer.java @@ -39,7 +39,7 @@ public class FeatureCollectionDeserializer extends JsonDeserializer<FeatureColle private List<Feature> extractFeature(JsonParser jsonParser) throws IOException { ObjectCodec codec = jsonParser.getCodec(); JsonNode featureCollection = codec.readTree(jsonParser); - JsonNode features = featureCollection.get("features"); + JsonNode features = featureCollection.get(GeoJsonConstants.FEATURES); if(features == null){ throw new JsonParseException(jsonParser, "Missing feature field in the "); diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/FeatureCollectionSerializer.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/FeatureCollectionSerializer.java index dc78521257d6a4d4c87a0207fbc9104879648ff4..7286202e0ceb8a3a9a641066e1af50edd0bf9c1a 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/FeatureCollectionSerializer.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/FeatureCollectionSerializer.java @@ -15,11 +15,11 @@ package org.opengroup.osdu.indexer.model.geojson.jackson; import com.fasterxml.jackson.core.JsonGenerator; -import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.JsonSerializer; import com.fasterxml.jackson.databind.SerializerProvider; import com.fasterxml.jackson.databind.jsontype.TypeSerializer; import lombok.Data; +import org.opengroup.osdu.indexer.model.GeoJsonObject; import org.opengroup.osdu.indexer.model.geojson.*; import java.io.IOException; @@ -30,9 +30,9 @@ public class FeatureCollectionSerializer extends JsonSerializer<FeatureCollectio @Override public void serialize(FeatureCollection value, JsonGenerator jsonGenerator, SerializerProvider provider) throws IOException { jsonGenerator.writeStartObject(); - jsonGenerator.writeStringField("type", "geometrycollection"); + jsonGenerator.writeStringField(GeoJsonConstants.TYPE, GeoJsonConstants.GEOMETRY_COLLECTION); - jsonGenerator.writeArrayFieldStart("geometries"); + jsonGenerator.writeArrayFieldStart(GeoJsonConstants.GEOMETRIES); for (Feature feature : value.getFeatures()) { if (feature.getGeometry() instanceof GeometryCollection) { GeometryCollection geometryCollection = (GeometryCollection) feature.getGeometry(); @@ -50,7 +50,7 @@ public class FeatureCollectionSerializer extends JsonSerializer<FeatureCollectio @Override public void serializeWithType(FeatureCollection value, JsonGenerator jsonGenerator, SerializerProvider provider, TypeSerializer typeSerializer) - throws IOException, JsonProcessingException { + throws IOException { serialize(value, jsonGenerator, provider); } @@ -58,33 +58,33 @@ public class FeatureCollectionSerializer extends JsonSerializer<FeatureCollectio private void serializeGeoShape(GeoJsonObject geoJsonObject, JsonGenerator jsonGenerator) throws IOException { if (geoJsonObject instanceof Point) { jsonGenerator.writeStartObject(); - jsonGenerator.writeStringField("type", "point"); - jsonGenerator.writeObjectField("coordinates", ((Point) geoJsonObject).getCoordinates()); + jsonGenerator.writeStringField(GeoJsonConstants.TYPE, GeoJsonConstants.POINT); + jsonGenerator.writeObjectField(GeoJsonConstants.COORDINATES, ((Point) geoJsonObject).getCoordinates()); jsonGenerator.writeEndObject(); } else if (geoJsonObject instanceof LineString) { jsonGenerator.writeStartObject(); - jsonGenerator.writeStringField("type", "linestring"); - jsonGenerator.writeObjectField("coordinates", ((LineString) geoJsonObject).getCoordinates()); + jsonGenerator.writeStringField(GeoJsonConstants.TYPE, GeoJsonConstants.LINE_STRING); + jsonGenerator.writeObjectField(GeoJsonConstants.COORDINATES, ((LineString) geoJsonObject).getCoordinates()); jsonGenerator.writeEndObject(); } else if (geoJsonObject instanceof Polygon) { jsonGenerator.writeStartObject(); - jsonGenerator.writeStringField("type", "polygon"); - jsonGenerator.writeObjectField("coordinates", ((Polygon) geoJsonObject).getCoordinates()); + jsonGenerator.writeStringField(GeoJsonConstants.TYPE, GeoJsonConstants.POLYGON); + jsonGenerator.writeObjectField(GeoJsonConstants.COORDINATES, ((Polygon) geoJsonObject).getCoordinates()); jsonGenerator.writeEndObject(); } else if (geoJsonObject instanceof MultiPoint) { jsonGenerator.writeStartObject(); - jsonGenerator.writeStringField("type", "multipoint"); - jsonGenerator.writeObjectField("coordinates", ((MultiPoint) geoJsonObject).getCoordinates()); + jsonGenerator.writeStringField(GeoJsonConstants.TYPE, GeoJsonConstants.MULTI_POINT); + jsonGenerator.writeObjectField(GeoJsonConstants.COORDINATES, ((MultiPoint) geoJsonObject).getCoordinates()); jsonGenerator.writeEndObject(); } else if (geoJsonObject instanceof MultiLineString) { jsonGenerator.writeStartObject(); - jsonGenerator.writeStringField("type", "multilinestring"); - jsonGenerator.writeObjectField("coordinates", ((MultiLineString) geoJsonObject).getCoordinates()); + jsonGenerator.writeStringField(GeoJsonConstants.TYPE, GeoJsonConstants.MULTI_LINE_STRING); + jsonGenerator.writeObjectField(GeoJsonConstants.COORDINATES, ((MultiLineString) geoJsonObject).getCoordinates()); jsonGenerator.writeEndObject(); } else if (geoJsonObject instanceof MultiPolygon) { jsonGenerator.writeStartObject(); - jsonGenerator.writeStringField("type", "multipolygon"); - jsonGenerator.writeObjectField("coordinates", ((MultiPolygon) geoJsonObject).getCoordinates()); + jsonGenerator.writeStringField(GeoJsonConstants.TYPE, GeoJsonConstants.MULTI_POLYGON); + jsonGenerator.writeObjectField(GeoJsonConstants.COORDINATES, ((MultiPolygon) geoJsonObject).getCoordinates()); jsonGenerator.writeEndObject(); } } diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/GeoJsonConstants.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/GeoJsonConstants.java new file mode 100644 index 0000000000000000000000000000000000000000..1e6a4aa1c6aa81b5eea7fb602756ab11ffea91e1 --- /dev/null +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/GeoJsonConstants.java @@ -0,0 +1,31 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.model.geojson.jackson; + +public class GeoJsonConstants { + public static final String TYPE = "type"; + public static final String FEATURES = "features"; + public static final String GEOMETRY_COLLECTION = "geometrycollection"; + public static final String GEOMETRIES = "geometries"; + public static final String COORDINATES = "coordinates"; + public static final String POINT = "point"; + public static final String MULTI_POINT = "multipoint"; + public static final String LINE_STRING = "linestring"; + public static final String MULTI_LINE_STRING = "multilinestring"; + public static final String POLYGON = "polygon"; + public static final String MULTI_POLYGON = "multipolygon"; + +} diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/GeometryCollectionSerializer.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/GeometryCollectionSerializer.java new file mode 100644 index 0000000000000000000000000000000000000000..95d286094499d2e8f88a6db36d9884c99bf07eb6 --- /dev/null +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/GeometryCollectionSerializer.java @@ -0,0 +1,57 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.model.geojson.jackson; + +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.databind.JsonSerializer; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.jsontype.TypeSerializer; +import org.opengroup.osdu.indexer.model.GeoJsonObject; +import org.opengroup.osdu.indexer.model.geojson.GeometryCollection; +import org.opengroup.osdu.indexer.model.geojson.IGeoJson; + +import java.io.IOException; + +public class GeometryCollectionSerializer extends JsonSerializer<GeometryCollection> { + @Override + public void serialize(GeometryCollection value, JsonGenerator jsonGenerator, SerializerProvider provider) throws IOException { + jsonGenerator.writeStartObject(); + jsonGenerator.writeStringField(GeoJsonConstants.TYPE, GeoJsonConstants.GEOMETRY_COLLECTION); + + jsonGenerator.writeArrayFieldStart(GeoJsonConstants.GEOMETRIES); + for (GeoJsonObject shape : value.getGeometries()) { + serializeGeoShape(shape, jsonGenerator); + } + jsonGenerator.writeEndArray(); + jsonGenerator.writeEndObject(); + } + + @Override + public void serializeWithType(GeometryCollection value, JsonGenerator jsonGenerator, SerializerProvider provider, TypeSerializer typeSerializer) + throws IOException { + + serialize(value, jsonGenerator, provider); + } + + private void serializeGeoShape(GeoJsonObject geoJsonObject, JsonGenerator jsonGenerator) throws IOException { + if(geoJsonObject instanceof IGeoJson) { + jsonGenerator.writeStartObject(); + jsonGenerator.writeStringField(GeoJsonConstants.TYPE, ((IGeoJson)geoJsonObject).getType()); + jsonGenerator.writeObjectField(GeoJsonConstants.COORDINATES, ((IGeoJson)geoJsonObject).getCoordinates()); + jsonGenerator.writeEndObject(); + } + } +} diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/PointDeserializer.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/PointDeserializer.java new file mode 100644 index 0000000000000000000000000000000000000000..57fba13c71cb30cdc9bb24642659ec5e3d508911 --- /dev/null +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/model/geojson/jackson/PointDeserializer.java @@ -0,0 +1,44 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.model.geojson.jackson; + +import com.fasterxml.jackson.core.JsonParseException; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.ObjectCodec; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonDeserializer; +import com.fasterxml.jackson.databind.JsonNode; +import org.opengroup.osdu.indexer.model.geojson.Point; +import org.opengroup.osdu.indexer.model.geojson.Position; +import java.io.IOException; + +public class PointDeserializer extends JsonDeserializer<Point> { + @Override + public Point deserialize(JsonParser jsonParser, DeserializationContext ctxt) throws IOException { + ObjectCodec codec = jsonParser.getCodec(); + JsonNode coordinatesNode = codec.readTree(jsonParser); + JsonNode positionNode = coordinatesNode.get(GeoJsonConstants.COORDINATES); + if(positionNode == null) { + throw new JsonParseException(jsonParser, "Missing coordinates field in the point"); + } + + Position position = codec.treeToValue(positionNode, Position.class); + if(position.hasAltitude()) + return new Point(position.getLongitude(), position.getLatitude(), position.getAltitude()); + else + return new Point(position.getLongitude(), position.getLatitude()); + } +} diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/schema/converter/SchemaToStorageFormatImpl.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/schema/converter/SchemaToStorageFormatImpl.java index 69e26c1845455b43584ebed256fae1067c8862a5..4c985a0ff6abdd442743929318302986efe9fb1a 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/schema/converter/SchemaToStorageFormatImpl.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/schema/converter/SchemaToStorageFormatImpl.java @@ -149,6 +149,7 @@ public class SchemaToStorageFormatImpl implements SchemaToStorageFormat { if (virtualProperties == null || virtualProperties.isEmpty()) return; + boolean hasVirtualDefaultLocation = false; for (Map.Entry<String, VirtualProperty> entry : virtualProperties.entrySet()) { if (entry.getValue().getPriorities() == null || entry.getValue().getPriorities().size() == 0) { @@ -159,6 +160,8 @@ public class SchemaToStorageFormatImpl implements SchemaToStorageFormat { // The schema for different properties in the list of Priority should be the same Priority priority = entry.getValue().getPriorities().get(0); String virtualPropertyPath = VirtualPropertyUtil.removeDataPrefix(entry.getKey()); + hasVirtualDefaultLocation |= VirtualPropertyUtil.isPropertyPathMatched(virtualPropertyPath, VirtualPropertyUtil.VIRTUAL_DEFAULT_LOCATION); + String originalPropertyPath = VirtualPropertyUtil.removeDataPrefix(priority.getPath()); List<Map<String, Object>> matchedItems = storageSchemaItems.stream().filter(item -> VirtualPropertyUtil.isPropertyPathMatched((String) item.get("path"), originalPropertyPath)) @@ -167,6 +170,13 @@ public class SchemaToStorageFormatImpl implements SchemaToStorageFormat { cloneVirtualProperty(item, virtualPropertyPath, originalPropertyPath)) .collect(Collectors.toList())); } + + if(hasVirtualDefaultLocation) { + Map<String, Object> isDecimatedProperty = new HashMap<>(); + isDecimatedProperty.put("path", VirtualPropertyUtil.VIRTUAL_DEFAULT_LOCATION_IS_DECIMATED_PATH); + isDecimatedProperty.put("kind", "boolean"); + storageSchemaItems.add(isDecimatedProperty); + } } private Map<String, Object> cloneVirtualProperty(Map<String, Object> originalProperty, String virtualPropertyPath, String originalPropertyPath) { diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/IndexerServiceImpl.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/IndexerServiceImpl.java index d04a2c9d449d7b58387443df241ee3a51a221755..dd3d7519c91a95b14987c3b4a1f530750a6ecaf1 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/IndexerServiceImpl.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/IndexerServiceImpl.java @@ -278,7 +278,7 @@ public class IndexerServiceImpl implements IndexerService { private RecordIndexerPayload.Record prepareIndexerPayload(IndexSchema schemaObj, Records.Entity storageRecord, Map<String, OperationType> idToOperationMap) { RecordIndexerPayload.Record document = null; - + try { Map<String, Object> storageRecordData = storageRecord.getData(); document = new RecordIndexerPayload.Record(); diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/SchemaProviderImpl.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/SchemaProviderImpl.java index 51770155425ab393c603a08f0f40c0798beefe82..6a688858371e14480c9a090b9a66fa75108553ec 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/SchemaProviderImpl.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/SchemaProviderImpl.java @@ -62,7 +62,7 @@ public class SchemaProviderImpl implements SchemaService { @Override public String getSchema(String kind) throws URISyntaxException, UnsupportedEncodingException { String schemaServiceSchema = getFromSchemaService(kind); - return Objects.nonNull(schemaServiceSchema) ? schemaServiceSchema : getFromStorageService(kind); + return schemaServiceSchema; } protected String getFromSchemaService(String kind) throws UnsupportedEncodingException, URISyntaxException { diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/StorageIndexerPayloadMapper.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/StorageIndexerPayloadMapper.java index ba1bed75630cdd8c5413ee5c17a747b4999a8a7a..0469ded33dfff0b0a99912594dcb84ada57767e3 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/StorageIndexerPayloadMapper.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/service/StorageIndexerPayloadMapper.java @@ -1,5 +1,21 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.opengroup.osdu.indexer.service; +import com.fasterxml.jackson.core.JsonProcessingException; import org.apache.commons.beanutils.NestedNullException; import org.apache.commons.beanutils.PropertyUtils; import org.apache.http.HttpStatus; @@ -15,6 +31,9 @@ import org.opengroup.osdu.indexer.schema.converter.tags.Priority; import org.opengroup.osdu.indexer.schema.converter.tags.VirtualProperties; import org.opengroup.osdu.indexer.schema.converter.tags.VirtualProperty; import org.opengroup.osdu.indexer.util.VirtualPropertyUtil; +import org.opengroup.osdu.indexer.util.geo.decimator.DecimatedResult; +import org.opengroup.osdu.indexer.util.geo.decimator.GeoShapeDecimator; +import org.opengroup.osdu.indexer.util.geo.decimator.GeoShapeDecimationSetting; import org.springframework.stereotype.Component; import javax.inject.Inject; @@ -22,14 +41,10 @@ import java.lang.reflect.InvocationTargetException; import java.util.*; import java.util.stream.Collectors; -import static org.opengroup.osdu.indexer.service.IAttributeParsingService.DATA_GEOJSON_TAG; -import static org.opengroup.osdu.indexer.service.IAttributeParsingService.RECORD_GEOJSON_TAG; - @Component public class StorageIndexerPayloadMapper { - private static final String DATA_VIRTUAL_DEFAULT_LOCATION = "data.VirtualProperties.DefaultLocation"; - private static final String VIRTUAL_DEFAULT_LOCATION = "VirtualProperties.DefaultLocation"; - private static final String FIELD_WGS84_COORDINATES = ".Wgs84Coordinates"; + private static final String SPATIAL_LOCATION_WGS84 = "SpatialLocation.Wgs84Coordinates"; + private static final String SPATIAL_AREA_WGS84 = "SpatialArea.Wgs84Coordinates"; @Inject private JaxRsDpsLog log; @@ -41,6 +56,10 @@ public class StorageIndexerPayloadMapper { private SchemaConverterConfig schemaConfig; @Inject private IVirtualPropertiesSchemaCache virtualPropertiesSchemaCache; + @Inject + private GeoShapeDecimator decimator; + @Inject + private GeoShapeDecimationSetting decimationSetting; public Map<String, Object> mapDataPayload(IndexSchema storageSchema, Map<String, Object> storageRecordData, String recordId) { @@ -53,7 +72,7 @@ public class StorageIndexerPayloadMapper { } mapDataPayload(storageSchema.getDataSchema(), storageRecordData, recordId, dataCollectorMap); - mapVirtualPropertiesPayload(storageSchema, dataCollectorMap); + mapVirtualPropertiesPayload(storageSchema, recordId, dataCollectorMap); return dataCollectorMap; } @@ -191,12 +210,13 @@ public class StorageIndexerPayloadMapper { return type == ElasticType.TEXT; } - private void mapVirtualPropertiesPayload(IndexSchema storageSchema, Map<String, Object> dataCollectorMap) { + private void mapVirtualPropertiesPayload(IndexSchema storageSchema, String recordId, Map<String, Object> dataCollectorMap) { if (dataCollectorMap.isEmpty() || this.virtualPropertiesSchemaCache.get(storageSchema.getKind()) == null) { return; } VirtualProperties virtualProperties = (VirtualProperties) this.virtualPropertiesSchemaCache.get(storageSchema.getKind()); + String originalGeoShapeProperty = null; for (Map.Entry<String, VirtualProperty> entry : virtualProperties.getProperties().entrySet()) { if (entry.getValue().getPriorities() == null || entry.getValue().getPriorities().size() == 0) { continue; @@ -213,15 +233,59 @@ public class StorageIndexerPayloadMapper { String virtualPropertyName = virtualPropertyPath + originalPropertyName.substring(originalPropertyPath.length()); dataCollectorMap.put(virtualPropertyName, dataCollectorMap.get(originalPropertyName)); }); + + if(virtualPropertyPath.equals(VirtualPropertyUtil.VIRTUAL_DEFAULT_LOCATION) && + dataCollectorMap.containsKey(VirtualPropertyUtil.VIRTUAL_DEFAULT_LOCATION_WGS84_PATH)) { + originalGeoShapeProperty = originalPropertyPath + VirtualPropertyUtil.FIELD_WGS84_COORDINATES; + } + } + + // No VirtualProperties.DefaultLocation.Wgs84Coordinates defined, use the default geo-shape property + if (originalGeoShapeProperty == null) + originalGeoShapeProperty = getDefaultGeoShapeProperty(dataCollectorMap); + if(originalGeoShapeProperty != null && decimationSetting.isDecimationEnabled()) { + try { + decimateGeoShape(originalGeoShapeProperty, dataCollectorMap); + } catch (JsonProcessingException ex) { + this.log.warning(String.format("record-id: %s | error decimating geoshape | error: %s", recordId, ex.getMessage())); + } + } + } + + private String getDefaultGeoShapeProperty(Map<String, Object> dataCollectorMap) { + if(dataCollectorMap.containsKey(SPATIAL_LOCATION_WGS84)) + return SPATIAL_LOCATION_WGS84; + if(dataCollectorMap.containsKey(SPATIAL_AREA_WGS84)) + return SPATIAL_AREA_WGS84; + return null; + } + + private void decimateGeoShape(String originalGeoShapeProperty, Map<String, Object> dataCollectorMap) throws JsonProcessingException { + if(originalGeoShapeProperty == null || !dataCollectorMap.containsKey(originalGeoShapeProperty)) + return; + + Map<String, Object> shapeObj = (Map<String, Object>)dataCollectorMap.get(originalGeoShapeProperty); + if(shapeObj == null) + return; + + DecimatedResult result = decimator.decimateShapeObj(shapeObj); + if(result.isDecimated()) { + dataCollectorMap.put(originalGeoShapeProperty, result.getDecimatedShapeObj()); + if(dataCollectorMap.containsKey(VirtualPropertyUtil.VIRTUAL_DEFAULT_LOCATION_WGS84_PATH)) { + dataCollectorMap.put(VirtualPropertyUtil.VIRTUAL_DEFAULT_LOCATION_WGS84_PATH, result.getDecimatedShapeObj()); + } + } + if(dataCollectorMap.containsKey(VirtualPropertyUtil.VIRTUAL_DEFAULT_LOCATION_WGS84_PATH)) { + dataCollectorMap.put(VirtualPropertyUtil.VIRTUAL_DEFAULT_LOCATION_IS_DECIMATED_PATH, result.isDecimated()); } } private Priority chooseOriginalProperty(String virtualPropertyPath, List<Priority> priorities, Map<String, Object> dataCollectorMap) { - if (VIRTUAL_DEFAULT_LOCATION.equals(virtualPropertyPath) || DATA_VIRTUAL_DEFAULT_LOCATION.equals(virtualPropertyPath)) { + if (VirtualPropertyUtil.VIRTUAL_DEFAULT_LOCATION.equals(virtualPropertyPath) || VirtualPropertyUtil.DATA_VIRTUAL_DEFAULT_LOCATION.equals(virtualPropertyPath)) { // Specially handle "data.VirtualProperties.DefaultLocation" -- check the value of the field "wgs84Coordinates" for (Priority priority : priorities) { String originalPropertyPath = VirtualPropertyUtil.removeDataPrefix(priority.getPath()); - String wgs84PropertyField = originalPropertyPath + FIELD_WGS84_COORDINATES; + String wgs84PropertyField = originalPropertyPath + VirtualPropertyUtil.FIELD_WGS84_COORDINATES; if (dataCollectorMap.containsKey(wgs84PropertyField) && dataCollectorMap.get(wgs84PropertyField) != null) return priority; } diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/VirtualPropertyUtil.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/VirtualPropertyUtil.java index 09d98312826b3f3196b07d01ae8934a85ab4fd79..ba9cea6085728ede4305fdacc63a568ab32d63c0 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/VirtualPropertyUtil.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/VirtualPropertyUtil.java @@ -18,6 +18,13 @@ package org.opengroup.osdu.indexer.util; import com.google.api.client.util.Strings; public class VirtualPropertyUtil { + public static final String DATA_VIRTUAL_DEFAULT_LOCATION = "data.VirtualProperties.DefaultLocation"; + public static final String VIRTUAL_DEFAULT_LOCATION = "VirtualProperties.DefaultLocation"; + public static final String FIELD_WGS84_COORDINATES = ".Wgs84Coordinates"; + public static final String VIRTUAL_DEFAULT_LOCATION_WGS84_PATH = VIRTUAL_DEFAULT_LOCATION + FIELD_WGS84_COORDINATES; + public static final String VIRTUAL_DEFAULT_LOCATION_IS_DECIMATED_PATH = VIRTUAL_DEFAULT_LOCATION + ".IsDecimated"; + + private static final String PROPERTY_DELIMITER = "."; private static final String DATA_PREFIX = "data" + PROPERTY_DELIMITER; diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/DecimatedResult.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/DecimatedResult.java new file mode 100644 index 0000000000000000000000000000000000000000..4c51f377f5fb1f44c67f5ca68df53ae1f5f9fbb8 --- /dev/null +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/DecimatedResult.java @@ -0,0 +1,25 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util.geo.decimator; + +import lombok.Data; +import java.util.Map; + +@Data +public class DecimatedResult { + Map<String, Object> decimatedShapeObj; + boolean isDecimated = false; +} diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/DecimationSettingCache.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/DecimationSettingCache.java new file mode 100644 index 0000000000000000000000000000000000000000..127d9e7079bad1ac0d6c6c12d2aa50d32c09aca9 --- /dev/null +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/DecimationSettingCache.java @@ -0,0 +1,30 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util.geo.decimator; + +import org.opengroup.osdu.core.common.cache.VmCache; +import org.springframework.stereotype.Component; + +@Component +public class DecimationSettingCache extends VmCache<String, Boolean> { + public DecimationSettingCache() { + super(300, 1000); + } + + public boolean containsKey(final String key) { + return this.get(key) != null; + } +} diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/DouglasPeuckerReducer.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/DouglasPeuckerReducer.java new file mode 100644 index 0000000000000000000000000000000000000000..854415b7dd41af4f42e37334aaf62cb063c0bf48 --- /dev/null +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/DouglasPeuckerReducer.java @@ -0,0 +1,207 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util.geo.decimator; + +import org.opengroup.osdu.indexer.model.geojson.Position; +import org.springframework.stereotype.Component; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashSet; +import java.util.List; +import java.util.Set; +import java.util.stream.Collectors; + +@Component +public class DouglasPeuckerReducer { + + public List<Integer> getPointIndexesToKeep(List<Position> coordinates, double xyScalar, double epsilon) { + List<Integer> pointIndexesToKeep = new ArrayList<>(); + + int firstPointIndex = 0; + int lastPointIndex = coordinates.size() - 1; + pointIndexesToKeep.add(firstPointIndex); + pointIndexesToKeep.add(lastPointIndex); + + // The first and the last point cannot be the same when applying Doublas/Peucker algorithm + while(firstPointIndex < lastPointIndex && arePointsEqual(coordinates.get(firstPointIndex), coordinates.get(lastPointIndex))) + lastPointIndex--; + + // Keep full resolution for very small objects, i.e. to preserve small rectangles which might be used for accuracy testing + if (lastPointIndex < 6) + { + for (int i = 1; i <= lastPointIndex; i++) + pointIndexesToKeep.add(i); + } + else { + // Save the last point used for reduction. It is ok to keep duplicate points + pointIndexesToKeep.add(lastPointIndex); + + List<Integer> boundaryPointIndexes = getBoundaryPointIndexes(coordinates, firstPointIndex, lastPointIndex); + pointIndexesToKeep.addAll(boundaryPointIndexes); + + reduce(coordinates, firstPointIndex, lastPointIndex, xyScalar, epsilon, pointIndexesToKeep); + } + + // Make sure that the duplicate points are removed + return pointIndexesToKeep.stream().distinct().sorted().collect(Collectors.toList()); + } + + private List<Integer> getBoundaryPointIndexes(List<Position> coordinates, int firstPointIndex, int lastPointIndex) { + + double xMin = Double.NaN; + double xMax = Double.NaN; + double yMin = Double.NaN; + double yMax = Double.NaN; + double zMin = Double.NaN; + double zMax = Double.NaN; + int xMinIndex = firstPointIndex; + int xMaxIndex = firstPointIndex; + int yMinIndex = firstPointIndex; + int yMaxIndex = firstPointIndex; + int zMinIndex = firstPointIndex; + int zMaxIndex = firstPointIndex; + for(int i = firstPointIndex; i <= lastPointIndex; i++) { + Position position = coordinates.get(i); + double xValue = position.getLongitude(); + double yValue = position.getLatitude(); + double zValue = position.getAltitude(); + + if(!Double.isNaN(xValue)) { + if (Double.isNaN(xMin) || xValue < xMin) + { + xMin = xValue; + xMinIndex = i; + } + + if (Double.isNaN(xMax) || xValue > xMax) + { + xMax = xValue; + xMaxIndex = i; + } + } + + if (!Double.isNaN(yValue)) + { + if (Double.isNaN(yMin) || yValue < yMin) + { + yMin = yValue; + yMinIndex = i; + } + + if (Double.isNaN(yMax) || yValue > yMax) + { + yMax = yValue; + yMaxIndex = i; + } + } + + if (!Double.isNaN(zValue)) + { + if (Double.isNaN(zMin) || zValue < zMin) + { + zMin = zValue; + zMinIndex = i; + } + + if (Double.isNaN(zMax) || zValue > zMax) + { + zMax = zValue; + zMaxIndex = i; + } + } + } + + Set<Integer> boundaryPointIndexes = new HashSet<> (Arrays.asList(xMinIndex, xMaxIndex, yMinIndex, yMaxIndex, zMinIndex, zMaxIndex)); + return new ArrayList<>(boundaryPointIndexes); + } + + private void reduce(List<Position> coordinates, int firstPointIndex, int lastPointIndex, double xyScalar, double epsilon, List<Integer> pointIndexesToKeep) { + double maxDistance = 0d; + int indexFarthest = 0; + + Position startPoint = coordinates.get(firstPointIndex); + Position endPoint = coordinates.get(lastPointIndex); + for (int index = firstPointIndex + 1; index < lastPointIndex; index++) + { + Position testPoint = coordinates.get(index); + double distance = calculatePerpendicularDistance(startPoint, endPoint, testPoint, xyScalar); + if (distance > maxDistance) + { + maxDistance = distance; + indexFarthest = index; + } + } + + if (maxDistance > epsilon && indexFarthest != 0) + { + // Add the largest point that exceeds the tolerance + pointIndexesToKeep.add(indexFarthest); + + // Bisect and recur + reduce(coordinates, firstPointIndex, indexFarthest, xyScalar, epsilon, pointIndexesToKeep); + reduce(coordinates, indexFarthest, lastPointIndex, xyScalar, epsilon, pointIndexesToKeep); + } + } + + /// <summary> + /// Calculates the perpendicular distance between a point and a line + /// </summary> + /// <returns></returns> + private double calculatePerpendicularDistance(Position startPoint, Position endPoint, Position testPoint, double xyScalar) { + boolean hasAltitude = startPoint.hasAltitude(); + double lineStartX = startPoint.getLongitude() * xyScalar; + double lineStartY = startPoint.getLatitude() * xyScalar; + double lineStartZ = startPoint.getAltitude(); + + double lineEndX = endPoint.getLongitude() * xyScalar; + double lineEndY = endPoint.getLatitude() * xyScalar; + double lineEndZ = endPoint.getAltitude(); + + double testPointX = testPoint.getLongitude() * xyScalar; + double testPointY = testPoint.getLatitude() * xyScalar; + double testPointZ = testPoint.getAltitude(); + + double vX = lineEndX - lineStartX; + double vY = lineEndY - lineStartY; + double vZ = lineEndZ - lineStartZ; + + double wX = testPointX - lineStartX; + double wY = testPointY - lineStartY; + double wZ = testPointZ - lineStartZ; + + double c1 = (wX * vX) + (wY * vY) + (hasAltitude ? wZ * vZ : 0); + double c2 = (vX * vX) + (vY * vY) + (hasAltitude ? vZ * vZ : 0); + + if (c2 == 0) + { + // It should not happen if start and end are not at the same point - return the distance between the test point and the line start point + return Math.sqrt(Math.pow(testPointX - lineStartX, 2) + Math.pow(testPointY - lineStartY, 2) + (hasAltitude ? Math.pow(testPointZ - lineStartZ, 2) : 0)); + } + + double b = c1 / c2; + double pbX = lineStartX + b * vX; + double pbY = lineStartY + b * vY; + double pbZ = lineStartZ + b * vZ; + return Math.sqrt(Math.pow(pbX - testPointX, 2) + Math.pow(pbY - testPointY, 2) + (hasAltitude ? Math.pow(pbZ - testPointZ, 2) : 0)); + } + + private boolean arePointsEqual(Position point1, Position point2) + { + return point1.getLatitude() == point2.getLatitude() && + point1.getLongitude() == point2.getLongitude() && + (!point1.hasAltitude() || point1.getAltitude() == point2.getAltitude()); + } +} diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimationSetting.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimationSetting.java new file mode 100644 index 0000000000000000000000000000000000000000..492f2d7479f3c2a02d883681fab6216045211b0e --- /dev/null +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimationSetting.java @@ -0,0 +1,89 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util.geo.decimator; + +import org.apache.http.HttpStatus; +import org.opengroup.osdu.core.common.logging.JaxRsDpsLog; +import org.opengroup.osdu.core.common.model.http.AppException; +import org.opengroup.osdu.core.common.model.http.DpsHeaders; +import org.opengroup.osdu.core.common.partition.*; +import org.opengroup.osdu.core.common.util.IServiceAccountJwtClient; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Lazy; +import org.springframework.stereotype.Component; + +@Component +public class GeoShapeDecimationSetting { + private static final String PROPERTY_NAME = "indexer-decimation-enabled"; + + @Lazy + @Autowired + private DecimationSettingCache cache; + + @Autowired + private JaxRsDpsLog logger; + + @Autowired + private DpsHeaders headers; + + @Autowired + private IPartitionFactory factory; + + @Autowired + private IServiceAccountJwtClient tokenService; + + public boolean isDecimationEnabled() { + String dataPartitionId = headers.getPartitionId(); + String cacheKey = String.format("%s-%s", dataPartitionId, PROPERTY_NAME); + if (cache != null && cache.containsKey(cacheKey)) + return cache.get(cacheKey); + + boolean decimationEnabled = false; + try { + PartitionInfo partitionInfo = getPartitionInfo(dataPartitionId); + decimationEnabled = getDecimationSetting(partitionInfo); + } catch (Exception e) { + this.logger.error(String.format("PartitionService: Error getting %s for dataPartition with Id: %s", PROPERTY_NAME, dataPartitionId), e); + } + + this.cache.put(cacheKey, decimationEnabled); + return decimationEnabled; + } + + private PartitionInfo getPartitionInfo(String dataPartitionId) { + try { + DpsHeaders partitionHeaders = DpsHeaders.createFromMap(headers.getHeaders()); + partitionHeaders.put(DpsHeaders.AUTHORIZATION, this.tokenService.getIdToken(dataPartitionId)); + + IPartitionProvider partitionProvider = this.factory.create(partitionHeaders); + PartitionInfo partitionInfo = partitionProvider.get(dataPartitionId); + return partitionInfo; + } catch (PartitionException e) { + throw new AppException(HttpStatus.SC_FORBIDDEN, "Service unavailable", String.format("Error getting partition info for data-partition: %s", dataPartitionId), e); + } + } + + private boolean getDecimationSetting(PartitionInfo partitionInfo) { + if(partitionInfo == null || partitionInfo.getProperties() == null) + return false; + + if(partitionInfo.getProperties().containsKey(PROPERTY_NAME)) { + Property property = partitionInfo.getProperties().get(PROPERTY_NAME); + return Boolean.parseBoolean((String)property.getValue()); + } + return false; + } +} diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimator.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimator.java new file mode 100644 index 0000000000000000000000000000000000000000..8eb3c46c47f9065f465e2593f7df6a07d294dcbd --- /dev/null +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimator.java @@ -0,0 +1,70 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util.geo.decimator; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.jsontype.NamedType; +import org.opengroup.osdu.indexer.model.geojson.*; +import org.opengroup.osdu.indexer.model.geojson.jackson.GeoJsonConstants; +import org.springframework.stereotype.Component; +import javax.inject.Inject; +import javax.validation.constraints.NotNull; +import java.util.Map; + +@Component +public class GeoShapeDecimator { + private final ObjectMapper deserializerMapper; + private final ObjectMapper serializerMapper; + + @Inject + private GeometryDecimator decimator; + + public GeoShapeDecimator() { + serializerMapper = new ObjectMapper(); + deserializerMapper = createDeserializerMapper(); + } + + public DecimatedResult decimateShapeObj(Map<String, Object> shapeObj) throws JsonProcessingException { + DecimatedResult result = new DecimatedResult(); + String type = (String)shapeObj.getOrDefault(GeoJsonConstants.TYPE, null); + if(type != null && type.equals(GeoJsonConstants.GEOMETRY_COLLECTION)) { + GeometryCollection geometryCollection = deserializerMapper.readValue(deserializerMapper.writeValueAsString(shapeObj), GeometryCollection.class); + boolean decimated = decimator.decimate(geometryCollection); + result.setDecimated(decimated); + if(decimated) { + Map<String, Object> decimatedShapeObj = serializerMapper.readValue(serializerMapper.writeValueAsString(geometryCollection), new TypeReference<Map<String, Object>>() {}); + result.setDecimatedShapeObj(decimatedShapeObj); + } + } + + return result; + } + + @NotNull + private static ObjectMapper createDeserializerMapper() { + ObjectMapper mapper = new ObjectMapper(); + mapper.registerSubtypes(new NamedType(GeometryCollection.class, GeoJsonConstants.GEOMETRY_COLLECTION)); + mapper.registerSubtypes(new NamedType(Polygon.class, GeoJsonConstants.POLYGON)); + mapper.registerSubtypes(new NamedType(MultiPolygon.class, GeoJsonConstants.MULTI_POLYGON)); + mapper.registerSubtypes(new NamedType(LineString.class, GeoJsonConstants.LINE_STRING)); + mapper.registerSubtypes(new NamedType(MultiLineString.class, GeoJsonConstants.MULTI_LINE_STRING)); + mapper.registerSubtypes(new NamedType(Point.class, GeoJsonConstants.POINT)); + mapper.registerSubtypes(new NamedType(MultiPoint.class, GeoJsonConstants.MULTI_POINT)); + return mapper; + } +} diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/GeometryDecimator.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/GeometryDecimator.java new file mode 100644 index 0000000000000000000000000000000000000000..21717132ff40ba9fd2149a3d53a239fdfb5ef2a1 --- /dev/null +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/util/geo/decimator/GeometryDecimator.java @@ -0,0 +1,116 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util.geo.decimator; + +import org.apache.commons.collections.CollectionUtils; +import org.opengroup.osdu.indexer.model.GeoJsonObject; +import org.opengroup.osdu.indexer.model.geojson.*; +import org.springframework.stereotype.Component; + +import javax.inject.Inject; +import java.util.ArrayList; +import java.util.List; + +@Component +public class GeometryDecimator { + private static final double NORMAL_SHAPE_DECIMATION_EPSILON = 10; // meters + private static final double DEGREES_TO_METERS = 100000; // approximate using 100km per degree + private static final int MAX_SHAPE_POINT_COUNT_FOR_LINE_DECIMATION = 300000; + private static final double TOLERANCE_FACTOR = 1.2; + + @Inject + private DouglasPeuckerReducer reducer; + + public boolean decimate(GeometryCollection geometryCollection) { + return decimate(geometryCollection, NORMAL_SHAPE_DECIMATION_EPSILON); + } + + private boolean decimate(GeometryCollection geometryCollection, double epsilon) { + if(geometryCollection == null || geometryCollection.getGeometries() == null) + return false; + + boolean decimated = false; + for(GeoJsonObject geoJsonObject: geometryCollection.getGeometries()) { + decimated |= decimateBasicGeometry(geoJsonObject, epsilon); + } + return decimated; + } + + @SuppressWarnings("unchecked") + private boolean decimate(List<?> coordinates, double epsilon) { + if(CollectionUtils.isEmpty(coordinates)) + return false; + + boolean decimated = false; + Object firstElement = coordinates.get(0); + if(firstElement instanceof List){ + for(Object coordinatesElement : coordinates) { + decimated |= decimate((List<?>) coordinatesElement, epsilon); + } + } else if(firstElement instanceof Position){ + decimated = decimateLine((List<Position>) coordinates, epsilon); + } + return decimated; + } + + private boolean decimateBasicGeometry(GeoJsonObject geometry, double epsilon) { + // Decimation is limited to the geometry of the instances + // of LineString, MultiLineString, Polygon and MultiPolygon + return geometry instanceof Geometry && + (geometry instanceof LineString || !(geometry instanceof MultiPoint)) && + decimate(((Geometry<?>) geometry).getCoordinates(), epsilon); + } + + private boolean decimateLine(List<Position> coordinates, double epsilon) { + if(coordinates == null || coordinates.size() < 3) + return false; + + // Douglas/Peucker algorithm is expensive, apply simple sampling if the line has too many points + coordinates = downSamplePoints(coordinates); + + List<Integer> pointIndexes = reducer.getPointIndexesToKeep(coordinates, DEGREES_TO_METERS, epsilon); + + boolean decimated = (coordinates.size() > pointIndexes.size()); + if(decimated) { + List<Position> decimatedCoordinates = new ArrayList<>(); + for(int i : pointIndexes) { + decimatedCoordinates.add(coordinates.get(i)); + } + + coordinates.clear(); + coordinates.addAll(decimatedCoordinates); + } + return decimated; + } + + private List<Position> downSamplePoints(List<Position> coordinates) { + //Don't sample it if the number of point is not much larger than MaxShapePointCountForLineDecimation + if (coordinates.size() <= MAX_SHAPE_POINT_COUNT_FOR_LINE_DECIMATION * TOLERANCE_FACTOR) { + return coordinates; + } + + List<Position> sampledPoints = new ArrayList<>(); + int interval = (int)Math.ceil(coordinates.size() / (double)MAX_SHAPE_POINT_COUNT_FOR_LINE_DECIMATION); + for(int i = 0; i < coordinates.size(); i += interval) { + sampledPoints.add(coordinates.get(i)); + } + // Add the last point + sampledPoints.add(coordinates.get(coordinates.size() -1)); + return sampledPoints; + } + + +} diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/model/geojson/jackson/GeometryCollectionSerializerTest.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/model/geojson/jackson/GeometryCollectionSerializerTest.java new file mode 100644 index 0000000000000000000000000000000000000000..4384b63aa0b51b86daf72259d7f22f53e3f94c86 --- /dev/null +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/model/geojson/jackson/GeometryCollectionSerializerTest.java @@ -0,0 +1,122 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.model.geojson.jackson; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.jsontype.NamedType; +import lombok.SneakyThrows; +import org.junit.Assert; +import org.junit.BeforeClass; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.opengroup.osdu.indexer.model.geojson.*; +import org.springframework.test.context.junit4.SpringRunner; +import java.io.BufferedReader; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.Map; + +@RunWith(SpringRunner.class) +public class GeometryCollectionSerializerTest { + private static ObjectMapper objectMapper; + + @BeforeClass + public static void setup() { + objectMapper = new ObjectMapper(); + objectMapper.registerSubtypes(new NamedType(GeometryCollection.class, GeoJsonConstants.GEOMETRY_COLLECTION)); + objectMapper.registerSubtypes(new NamedType(Polygon.class, GeoJsonConstants.POLYGON)); + objectMapper.registerSubtypes(new NamedType(MultiPolygon.class, GeoJsonConstants.MULTI_POLYGON)); + objectMapper.registerSubtypes(new NamedType(LineString.class, GeoJsonConstants.LINE_STRING)); + objectMapper.registerSubtypes(new NamedType(MultiLineString.class, GeoJsonConstants.MULTI_LINE_STRING)); + objectMapper.registerSubtypes(new NamedType(Point.class, GeoJsonConstants.POINT)); + objectMapper.registerSubtypes(new NamedType(MultiPoint.class, GeoJsonConstants.MULTI_POINT)); + } + + @Test + public void deserialize_polyline() throws JsonProcessingException { + String shapeJson = getGeoShapeFromFile("geometrycollection_linestring.json"); + GeometryCollection geometryCollection = objectMapper.readValue(shapeJson, GeometryCollection.class); + Assert.assertNotNull(geometryCollection); + Assert.assertNotNull(geometryCollection.getGeometries()); + Assert.assertTrue(geometryCollection.getGeometries().size() > 0); + Assert.assertTrue(geometryCollection.getGeometries().get(0) instanceof LineString); + } + + @Test + public void deserialize_multipolyline() throws JsonProcessingException { + String shapeJson = getGeoShapeFromFile("geometrycollection_multilinestring.json"); + GeometryCollection geometryCollection = objectMapper.readValue(shapeJson, GeometryCollection.class); + Assert.assertNotNull(geometryCollection); + Assert.assertNotNull(geometryCollection.getGeometries()); + Assert.assertTrue(geometryCollection.getGeometries().size() > 0); + Assert.assertTrue(geometryCollection.getGeometries().get(0) instanceof MultiLineString); + } + + @Test + public void deserialize_polygon() throws JsonProcessingException { + String shapeJson = getGeoShapeFromFile("geometrycollection_polygon.json"); + GeometryCollection geometryCollection = objectMapper.readValue(shapeJson, GeometryCollection.class); + Assert.assertNotNull(geometryCollection); + Assert.assertNotNull(geometryCollection.getGeometries()); + Assert.assertTrue(geometryCollection.getGeometries().size() > 0); + Assert.assertTrue(geometryCollection.getGeometries().get(0) instanceof Polygon); + } + + @Test + public void deserialize_multipolygon() throws JsonProcessingException { + String shapeJson = getGeoShapeFromFile("geometrycollection_multipolygon.json"); + GeometryCollection geometryCollection = objectMapper.readValue(shapeJson, GeometryCollection.class); + Assert.assertNotNull(geometryCollection); + Assert.assertNotNull(geometryCollection.getGeometries()); + Assert.assertTrue(geometryCollection.getGeometries().size() > 0); + Assert.assertTrue(geometryCollection.getGeometries().get(0) instanceof MultiPolygon); + } + + @Test + public void deserialize_point() throws JsonProcessingException { + String shapeJson = getGeoShapeFromFile("geometrycollection_point.json"); + GeometryCollection geometryCollection = objectMapper.readValue(shapeJson, GeometryCollection.class); + Assert.assertNotNull(geometryCollection); + Assert.assertNotNull(geometryCollection.getGeometries()); + Assert.assertTrue(geometryCollection.getGeometries().size() > 0); + Assert.assertTrue(geometryCollection.getGeometries().get(0) instanceof Point); + } + + @Test + public void deserialize_multipoint() throws JsonProcessingException { + String shapeJson = getGeoShapeFromFile("geometrycollection_multipoint.json"); + GeometryCollection geometryCollection = objectMapper.readValue(shapeJson, GeometryCollection.class); + Assert.assertNotNull(geometryCollection); + Assert.assertNotNull(geometryCollection.getGeometries()); + Assert.assertTrue(geometryCollection.getGeometries().size() > 0); + Assert.assertTrue(geometryCollection.getGeometries().get(0) instanceof MultiPoint); + } + + @SneakyThrows + private String getGeoShapeFromFile(String file) { + InputStream inStream = this.getClass().getResourceAsStream("/geo/decimator/" + file); + BufferedReader br = new BufferedReader(new InputStreamReader(inStream)); + StringBuilder stringBuilder = new StringBuilder(); + String sCurrentLine; + while ((sCurrentLine = br.readLine()) != null) + { + stringBuilder.append(sCurrentLine).append("\n"); + } + return stringBuilder.toString(); + } +} diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/model/geojson/jackson/PointDeserializerTest.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/model/geojson/jackson/PointDeserializerTest.java new file mode 100644 index 0000000000000000000000000000000000000000..fd27aa007f073ea2ce148c7b32bce3066bb8646f --- /dev/null +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/model/geojson/jackson/PointDeserializerTest.java @@ -0,0 +1,76 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.model.geojson.jackson; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.jsontype.NamedType; +import lombok.SneakyThrows; +import org.junit.Assert; +import org.junit.BeforeClass; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.opengroup.osdu.indexer.model.geojson.Point; +import org.springframework.test.context.junit4.SpringRunner; +import java.io.BufferedReader; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.Map; + +@RunWith(SpringRunner.class) +public class PointDeserializerTest { + private static ObjectMapper objectMapper; + + @BeforeClass + public static void setup() { + objectMapper = new ObjectMapper(); + objectMapper.registerSubtypes(new NamedType(Point.class, GeoJsonConstants.POINT)); + } + + @Test + public void deserialize_2d_point() throws JsonProcessingException { + String shapeJson = getGeoShapeFromFile("point_2d.json"); + Point point = objectMapper.readValue(shapeJson, Point.class); + Assert.assertNotNull(point); + Assert.assertFalse(Double.isNaN(point.getCoordinates().getLongitude())); + Assert.assertFalse(Double.isNaN(point.getCoordinates().getLatitude())); + Assert.assertTrue(Double.isNaN(point.getCoordinates().getAltitude())); + } + + @Test + public void deserialize_3d_point() throws JsonProcessingException { + String shapeJson = getGeoShapeFromFile("point_3d.json"); + Point point = objectMapper.readValue(shapeJson, Point.class); + Assert.assertNotNull(point); + Assert.assertFalse(Double.isNaN(point.getCoordinates().getLongitude())); + Assert.assertFalse(Double.isNaN(point.getCoordinates().getLatitude())); + Assert.assertFalse(Double.isNaN(point.getCoordinates().getAltitude())); + } + + @SneakyThrows + private String getGeoShapeFromFile(String file) { + InputStream inStream = this.getClass().getResourceAsStream("/geo/decimator/" + file); + BufferedReader br = new BufferedReader(new InputStreamReader(inStream)); + StringBuilder stringBuilder = new StringBuilder(); + String sCurrentLine; + while ((sCurrentLine = br.readLine()) != null) + { + stringBuilder.append(sCurrentLine).append("\n"); + } + return stringBuilder.toString(); + } +} diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/SchemaProviderImplTest.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/SchemaProviderImplTest.java index 7d1b5982c0afe6f2649f44b2337e333fd51faf9a..fe91e5ffbca0e444ee037753a66341fe31d56cca 100644 --- a/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/SchemaProviderImplTest.java +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/SchemaProviderImplTest.java @@ -147,25 +147,6 @@ public class SchemaProviderImplTest { assertNull(recordSchemaResponse); } - @Test - public void should_call_Schema_then_Storage() throws Exception { - String kind = "tenant:test:test:1.0.0"; - - SchemaProviderImpl schemaService = Mockito.mock(SchemaProviderImpl.class); - when(schemaService.getSchema(any())).thenCallRealMethod(); - - InOrder inOrder = inOrder(schemaService); - - String recordSchemaResponse = schemaService.getSchema(kind); - assertNull(recordSchemaResponse); - - inOrder.verify(schemaService).getSchema(any()); - inOrder.verify(schemaService).getFromSchemaService(any()); - inOrder.verify(schemaService).getFromStorageService(any()); - verify(schemaService, times(1)).getFromStorageService(any()); - verify(schemaService, times(1)).getFromSchemaService(any()); - } - @Test public void should_call_only_SchemaService_if_it_returns_result() throws Exception { String kind = "tenant:test:test:1.0.0"; diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/StorageIndexerPayloadMapperTest.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/StorageIndexerPayloadMapperTest.java index daa61f074acb0723bb4751a7a003e2233af42317..8a6c64d60ab28274c29935cfcebf23de59c05288 100644 --- a/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/StorageIndexerPayloadMapperTest.java +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/StorageIndexerPayloadMapperTest.java @@ -9,12 +9,19 @@ import org.junit.Test; import org.junit.runner.RunWith; import org.opengroup.osdu.core.common.Constants; import org.opengroup.osdu.core.common.logging.JaxRsDpsLog; +import org.opengroup.osdu.core.common.model.http.DpsHeaders; import org.opengroup.osdu.core.common.model.indexer.IndexSchema; import org.opengroup.osdu.core.common.model.indexer.JobStatus; +import org.opengroup.osdu.core.common.partition.*; import org.opengroup.osdu.indexer.schema.converter.config.SchemaConverterPropertiesConfig; import org.opengroup.osdu.indexer.schema.converter.exeption.SchemaProcessingException; import org.opengroup.osdu.indexer.schema.converter.interfaces.IVirtualPropertiesSchemaCache; import org.opengroup.osdu.indexer.schema.converter.tags.SchemaRoot; +import org.opengroup.osdu.indexer.service.mock.PartitionFactoryMock; +import org.opengroup.osdu.indexer.service.mock.PartitionProviderMock; +import org.opengroup.osdu.indexer.service.mock.ServiceAccountJwtClientMock; +import org.opengroup.osdu.indexer.service.mock.VirtualPropertiesSchemaCacheMock; +import org.opengroup.osdu.indexer.util.geo.decimator.*; import org.opengroup.osdu.indexer.util.parser.BooleanParser; import org.opengroup.osdu.indexer.util.parser.DateTimeParser; import org.opengroup.osdu.indexer.util.parser.GeoShapeParser; @@ -36,8 +43,10 @@ import static org.junit.Assert.*; @RunWith(SpringRunner.class) @SpringBootTest(classes = {StorageIndexerPayloadMapper.class, AttributeParsingServiceImpl.class, NumberParser.class, - BooleanParser.class, DateTimeParser.class, VirtualPropertiesSchemaCacheMock.class, - GeoShapeParser.class, GeometryConversionService.class, JobStatus.class, SchemaConverterPropertiesConfig.class, JaxRsDpsLog.class}) + BooleanParser.class, DateTimeParser.class, GeoShapeParser.class, DouglasPeuckerReducer.class, GeoShapeDecimator.class, + GeometryDecimator.class, GeometryConversionService.class, DecimationSettingCache.class, + GeoShapeDecimationSetting.class, DpsHeaders.class, JobStatus.class, SchemaConverterPropertiesConfig.class, JaxRsDpsLog.class, + PartitionFactoryMock.class, PartitionProviderMock.class, ServiceAccountJwtClientMock.class, VirtualPropertiesSchemaCacheMock.class, }) public class StorageIndexerPayloadMapperTest { public static final String FIRST_OBJECT_INNER_PROPERTY = "FirstObjectInnerProperty"; diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/PartitionFactoryMock.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/PartitionFactoryMock.java new file mode 100644 index 0000000000000000000000000000000000000000..dbe1ee22b0020d99eff0cc1b585c48400ce958e8 --- /dev/null +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/PartitionFactoryMock.java @@ -0,0 +1,27 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.service.mock; + +import org.opengroup.osdu.core.common.model.http.DpsHeaders; +import org.opengroup.osdu.core.common.partition.IPartitionFactory; +import org.opengroup.osdu.core.common.partition.IPartitionProvider; + +public class PartitionFactoryMock implements IPartitionFactory { + @Override + public IPartitionProvider create(DpsHeaders dpsHeaders) { + return new PartitionProviderMock(); + } +} diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/PartitionProviderMock.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/PartitionProviderMock.java new file mode 100644 index 0000000000000000000000000000000000000000..55767e8fd7841b2e1e9063fc240dab0cae6b8f22 --- /dev/null +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/PartitionProviderMock.java @@ -0,0 +1,57 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.service.mock; + +import org.opengroup.osdu.core.common.partition.IPartitionProvider; +import org.opengroup.osdu.core.common.partition.PartitionException; +import org.opengroup.osdu.core.common.partition.PartitionInfo; +import org.opengroup.osdu.core.common.partition.Property; + +import java.util.List; + +public class PartitionProviderMock implements IPartitionProvider { + private static final String PROPERTY_NAME = "indexer-decimation-enabled"; + + @Override + public PartitionInfo get(String s) throws PartitionException { + PartitionInfo partitionInfo = new PartitionInfo(); + Property property = new Property(); + property.setSensitive(false); + property.setValue("true"); + partitionInfo.getProperties().put(PROPERTY_NAME, property); + return partitionInfo; + } + + @Override + public PartitionInfo create(String s, PartitionInfo partitionInfo) throws PartitionException { + return null; + } + + @Override + public void update(String s, PartitionInfo partitionInfo) throws PartitionException { + + } + + @Override + public void delete(String s) throws PartitionException { + + } + + @Override + public List<String> list() throws PartitionException { + return null; + } +} diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/ServiceAccountJwtClientMock.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/ServiceAccountJwtClientMock.java new file mode 100644 index 0000000000000000000000000000000000000000..5c8211cbb9748d723b2ee601d9e2bd2b57f60f44 --- /dev/null +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/ServiceAccountJwtClientMock.java @@ -0,0 +1,25 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.service.mock; + +import org.opengroup.osdu.core.common.util.IServiceAccountJwtClient; + +public class ServiceAccountJwtClientMock implements IServiceAccountJwtClient { + @Override + public String getIdToken(String s) { + return "token"; + } +} diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/VirtualPropertiesSchemaCacheMock.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/VirtualPropertiesSchemaCacheMock.java similarity index 96% rename from indexer-core/src/test/java/org/opengroup/osdu/indexer/service/VirtualPropertiesSchemaCacheMock.java rename to indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/VirtualPropertiesSchemaCacheMock.java index 621dda741747ebbc61dd749b1d8cdaf389eca69a..f7f69db45bed65e6fb4b35779ca4a37694302fb5 100644 --- a/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/VirtualPropertiesSchemaCacheMock.java +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/service/mock/VirtualPropertiesSchemaCacheMock.java @@ -13,7 +13,7 @@ * limitations under the License. */ -package org.opengroup.osdu.indexer.service; +package org.opengroup.osdu.indexer.service.mock; import org.opengroup.osdu.indexer.schema.converter.interfaces.IVirtualPropertiesSchemaCache; import org.opengroup.osdu.indexer.schema.converter.tags.VirtualProperties; diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/DecimationSettingCacheTest.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/DecimationSettingCacheTest.java new file mode 100644 index 0000000000000000000000000000000000000000..e850126fe2880d457bd3fcd15ede9e0953b1d779 --- /dev/null +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/DecimationSettingCacheTest.java @@ -0,0 +1,45 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util.geo.decimator; + +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.test.context.junit4.SpringRunner; + +@RunWith(SpringRunner.class) +public class DecimationSettingCacheTest { + private static final String VALID_KEY = "Tenant1-indexer-decimation-enabled"; + private static final String INVALID_KEY = "Tenant2-indexer-decimation-enabled"; + DecimationSettingCache cache; + + @Before + public void setup() { + cache = new DecimationSettingCache(); + cache.put(VALID_KEY, true); + } + + @Test + public void getValidKey() { + Assert.assertTrue(cache.containsKey(VALID_KEY)); + } + + @Test + public void getInvalidKey() { + Assert.assertFalse(cache.containsKey(INVALID_KEY)); + } +} diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/DouglasPeuckerReducerTest.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/DouglasPeuckerReducerTest.java new file mode 100644 index 0000000000000000000000000000000000000000..26f0b5e938d705a3c6f87ae13aa98e02d78c080f --- /dev/null +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/DouglasPeuckerReducerTest.java @@ -0,0 +1,77 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util.geo.decimator; + +import com.google.gson.Gson; +import com.google.gson.reflect.TypeToken; +import org.junit.Assert; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.opengroup.osdu.indexer.model.geojson.Position; +import org.springframework.test.context.junit4.SpringRunner; + +import java.lang.reflect.Type; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +@RunWith(SpringRunner.class) +public class DouglasPeuckerReducerTest { + Gson gson = new Gson(); + + @InjectMocks + private DouglasPeuckerReducer sut; + + @Test + public void should_decimate_line() { + String coordinatesJson = "[[178.11226380138962, -36.390207464157314], [178.1123772202456, -36.39023861556822], [178.11251344088177, -36.3902777929863], [178.11264907210185, -36.390307990851994], [178.11278588251707, -36.39035614732104], [178.11291040784653, -36.39038682152853], [178.11304662894693, -36.390425998293146], [178.11318226056676, -36.39045619551308], [178.11329685929155, -36.39050530474071], [178.11343249111647, -36.39053550165624], [178.11356871267787, -36.39057467778047], [178.113693828242, -36.39061433048508], [178.11383005004217, -36.39065350628816], [178.11396568226678, -36.39068370255791], [178.11407969203833, -36.390723831598926], [178.11421591417854, -36.39076300692875], [178.7285555264073, -36.68661856799342], [178.72867223805497, -36.68668495001179]]"; + List<Position> coordinates = convertToPositionList(coordinatesJson); + List<Integer> indexesToKeep = sut.getPointIndexesToKeep(coordinates, 100000, 10); + List<Integer> indexesToExpected = Arrays.asList(0, 15, 17); + Assert.assertEquals(indexesToExpected, indexesToKeep); + } + + @Test + public void should_decimate_polygon() { + String coordinatesJson = "[[104.07197000000014, 5.092352000000005], [104.17093500000004, 4.912466999999992], [104.1873700000001, 4.921559000000002], [104.18752300000011, 4.921515000000056], [104.35131699999994, 5.01209700000004], [104.35192899999998, 5.011919000000091], [104.35202800000002, 5.011974000000009], [104.35248800000005, 5.01184000000012], [104.35258599999997, 5.011895000000038], [104.35319900000007, 5.01171700000009], [104.35329800000011, 5.011772000000008], [104.35375700000003, 5.011639000000002], [104.35385600000006, 5.011693000000037], [104.35431599999993, 5.011560000000031], [104.35441500000013, 5.0116140000000655], [104.35502699999995, 5.011437000000001], [104.35512599999998, 5.011491000000035], [104.35558600000002, 5.01135800000003], [104.355684, 5.011413000000118], [104.3562970000001, 5.011234999999999], [104.35639600000007, 5.011288999999977], [104.35685500000005, 5.011156000000028], [104.35695400000009, 5.011211000000117], [104.35756700000002, 5.011032999999941], [104.35766500000011, 5.011088000000086], [104.35812499999997, 5.01095399999997], [104.358224, 5.011009000000115], [104.35868299999998, 5.0108750000000555], [104.35878199999996, 5.0109299999999735], [104.35939500000006, 5.010752000000139], [104.3594940000001, 5.0108070000001135], [104.35995300000008, 5.010674000000108], [104.36005200000005, 5.010727999999972], [104.36066499999998, 5.010550000000137], [104.36076300000013, 5.010605000000055], [104.361223, 5.010472000000107], [104.36132199999997, 5.010526000000084], [104.36178099999995, 5.0103930000001355], [104.36187999999999, 5.0104480000000535], [104.36249300000009, 5.010270000000048], [104.36259100000001, 5.010324000000082], [104.36305100000004, 5.010191000000077], [104.36315000000008, 5.010246000000052], [104.36376200000007, 5.010068000000047], [104.3638610000001, 5.010122999999965], [104.36432099999996, 5.0099890000000755], [104.36441900000011, 5.0100439999999935], [104.36503199999999, 5.009866000000045], [104.36513100000002, 5.0099210000001335], [104.36559, 5.009787000000074], [104.36568900000003, 5.009841999999992], [104.36614900000006, 5.009708999999987], [104.36624699999999, 5.009763000000021], [104.36686000000009, 5.009585000000072], [104.36695900000012, 5.00963999999999], [104.3674180000001, 5.009506999999985], [104.36751700000008, 5.009561000000019], [104.36813000000001, 5.009383000000014], [104.36822900000004, 5.009437999999989], [104.36868800000002, 5.0093049999999835], [104.368787, 5.009359000000018], [104.3694000000001, 5.0091820000001235], [104.36949800000002, 5.00923599999993], [104.36995800000011, 5.009102999999982], [104.37005699999992, 5.009157000000016], [104.37051600000007, 5.009024000000011], [104.3706150000001, 5.009079000000099], [104.37122800000003, 5.008900999999923], [104.37132600000012, 5.008956000000069], [104.37178599999999, 5.008822000000009], [104.37188500000002, 5.008877000000098], [104.37249700000001, 5.008699000000092], [104.37259600000004, 5.008754000000067], [104.37305600000008, 5.008619999999951], [104.37315400000006, 5.008675000000096], [104.37376699999993, 5.008497000000091], [104.37386600000013, 5.008552000000009], [104.37432500000011, 5.00841800000012], [104.37442399999998, 5.008473000000038], [104.37488400000001, 5.008340000000089], [104.3749820000001, 5.0083940000001235], [104.37559500000003, 5.008216000000118], [104.37569400000007, 5.008271000000036], [104.37615299999999, 5.008138000000031], [104.37625200000002, 5.008192000000065], [104.37686500000012, 5.008015], [104.37696399999999, 5.0080690000000345], [104.37742300000014, 5.007936000000029], [104.37752199999994, 5.0079900000000634], [104.37813500000004, 5.007812999999999], [104.37823299999997, 5.007867000000033], [104.37869300000006, 5.007734000000028], [104.37879200000003, 5.007788000000062], [104.37925100000001, 5.007655000000057], [104.37935000000004, 5.007709999999975], [104.37996299999998, 5.007532000000026], [104.38006100000007, 5.007587000000115], [104.3805210000001, 5.007453000000055], [104.38062000000014, 5.007507999999973], [104.38123199999995, 5.007329999999968], [104.38133099999999, 5.007385000000113], [104.38179100000002, 5.007251000000053], [104.38188899999994, 5.007306000000142], [104.38250200000004, 5.007128000000137], [104.38260100000008, 5.007183000000111], [104.38306000000006, 5.007048999999995], [104.38315900000009, 5.00710400000014], [104.38361900000012, 5.006971000000135], [104.38371700000005, 5.007024999999999], [104.38432999999998, 5.006846999999993], [104.38442900000001, 5.006902000000082], [104.38488799999993, 5.0067690000001335], [104.38498700000014, 5.00682299999994], [104.38560000000007, 5.006644999999992], [104.3856990000001, 5.00670000000008], [104.38615800000002, 5.006567000000075], [104.38625700000006, 5.006621000000109], [104.38686999999999, 5.0064440000000445], [104.38696800000008, 5.006498000000079], [104.38742799999994, 5.0063650000000735], [104.38752699999998, 5.006419000000108], [104.38798600000013, 5.006286000000102], [104.38808499999999, 5.006341000000077], [104.38869800000009, 5.006163000000072], [104.38879600000001, 5.006217000000106], [104.38925600000005, 5.006084000000101], [104.38935500000008, 5.006139000000019], [104.38996700000007, 5.00596100000007], [104.3900660000001, 5.006015999999988], [104.39052600000014, 5.005882000000099], [104.39062400000006, 5.005937000000017], [104.39123699999999, 5.005759000000012], [104.39133600000002, 5.005813999999987], [104.391795, 5.005680000000098], [104.39189399999998, 5.005735000000016], [104.39235400000007, 5.0056010000001265], [104.39245199999999, 5.0056560000000445], [104.39306500000009, 5.005478000000039], [104.39316400000013, 5.005533000000014], [104.39362300000005, 5.005400000000009], [104.39372200000008, 5.005454000000043], [104.39433500000001, 5.005276000000038], [104.39443400000005, 5.005330999999956], [104.39489299999997, 5.005198000000007], [104.394992, 5.0052519999999845], [104.3956050000001, 5.005074000000036], [104.39570300000003, 5.0051290000001245], [104.39616300000006, 5.004995999999949], [104.39626200000009, 5.005049999999983], [104.39672100000007, 5.004916999999978], [104.3968200000001, 5.004971000000012], [104.39743299999998, 5.004794000000118], [104.39753100000013, 5.004847999999981], [104.39799099999999, 5.004714999999976], [104.39809000000002, 5.00476900000001], [104.39870200000001, 5.004592000000116], [104.39880100000005, 5.00464599999998], [104.39926100000008, 5.0045129999999745], [104.399359, 5.004568000000063], [104.3999720000001, 5.0043900000001145], [104.40007100000014, 5.004443999999921], [104.40053000000012, 5.004310999999973], [104.40062899999992, 5.004366000000061], [104.40108900000001, 5.004232000000002], [104.4011870000001, 5.00428700000009], [104.40180000000004, 5.004109000000142], [104.40189900000001, 5.00416400000006], [104.40235799999999, 5.00403], [104.40245700000003, 5.004085000000089], [104.40307000000013, 5.003907000000083], [104.40316899999993, 5.003962000000058], [104.40362800000008, 5.003827999999942], [104.40372700000012, 5.003883000000087], [104.40434000000005, 5.003705000000082], [104.40443800000014, 5.00376], [104.404898, 5.003626000000111], [104.40499700000004, 5.003681000000029], [104.40545600000002, 5.00354800000008], [104.40555500000005, 5.0036020000001145], [104.40616799999992, 5.003424000000109], [104.40626600000007, 5.003479000000027], [104.4067260000001, 5.003346000000022], [104.40682500000014, 5.003400000000056], [104.40743700000013, 5.0032220000001075], [104.407536, 5.0032770000000255], [104.40799600000003, 5.00314400000002], [104.40809399999995, 5.003198000000054], [104.40855399999998, 5.003065000000049], [104.40865300000002, 5.003119000000083], [104.40895899999992, 5.003030000000024], [104.40905800000013, 5.003085000000112], [104.40951700000011, 5.002951999999937], [104.40961600000014, 5.003006000000141], [104.40992200000005, 5.002917000000082], [104.41002100000009, 5.002972], [104.41048100000012, 5.0028389999999945], [104.41057900000004, 5.002893000000029], [104.41088600000006, 5.00280400000014], [104.41098399999998, 5.002859000000058], [104.41144400000002, 5.002726000000109], [104.41154300000005, 5.002779999999916], [104.41184900000013, 5.002691000000027], [104.411948, 5.002745999999945], [104.41240699999997, 5.002612000000056], [104.41250599999995, 5.002666999999974], [104.41281200000009, 5.002578000000085], [104.41291100000007, 5.002633000000003], [104.41337099999993, 5.002499000000114], [104.41346999999996, 5.002554000000089], [104.41377600000004, 5.002464999999972], [104.41387500000008, 5.002520000000118], [104.41433400000005, 5.002386000000001], [104.41443300000009, 5.002440999999976], [104.414739, 5.00235200000003], [104.41483800000003, 5.002407000000005], [104.41529800000006, 5.002273000000059], [104.41539599999999, 5.002328000000034], [104.41570300000001, 5.002238999999918], [104.4158010000001, 5.0022930000001224], [104.41626099999996, 5.002159999999947], [104.41636, 5.002215000000092], [104.41666600000008, 5.002125999999976], [104.41676500000011, 5.00218000000001], [104.41722400000009, 5.002047000000061], [104.41732300000007, 5.002101999999979], [104.41762900000003, 5.00201300000009], [104.41772800000001, 5.002067000000068], [104.4181880000001, 5.001934000000119], [104.41828600000002, 5.001987999999926], [104.41859299999999, 5.001899999999978], [104.41869100000014, 5.001953999999955], [104.419151, 5.001821000000007], [104.41925000000003, 5.001875000000041], [104.41955600000011, 5.001786000000095], [104.41965499999998, 5.00184100000007], [104.42011400000007, 5.001708000000065], [104.4202130000001, 5.001762000000099], [104.42051900000001, 5.0016729999999825], [104.42061800000005, 5.001728000000128], [104.42107800000008, 5.001595000000123], [104.42117700000011, 5.001648999999986], [104.42148300000002, 5.00156000000004], [104.42158200000006, 5.001615000000015], [104.42204100000004, 5.001481000000126], [104.42214000000001, 5.001536000000044], [104.42244599999998, 5.001446999999928], [104.42254499999996, 5.001502000000073], [104.42300500000005, 5.001368000000014], [104.42310300000014, 5.001423000000102], [104.42340999999993, 5.001334000000043], [104.42350800000008, 5.001389000000131], [104.42396800000012, 5.0012550000000715], [104.42406699999998, 5.0013099999999895], [104.42437300000006, 5.0012210000001005], [104.4244720000001, 5.001275000000135], [104.42493100000002, 5.001142000000129], [104.42503000000005, 5.001197000000047], [104.42533599999996, 5.001107999999988], [104.425435, 5.001162000000022], [104.42589500000003, 5.001029000000017], [104.425993, 5.001084000000105], [104.42629999999997, 5.000995000000046], [104.426399, 5.00104900000008], [104.42685799999998, 5.000916000000075], [104.42695699999996, 5.000970000000109], [104.42741599999994, 5.000837000000104], [104.42751500000014, 5.000892000000022], [104.42782100000005, 5.000803000000133], [104.42792000000009, 5.000856999999996], [104.42838000000012, 5.000723999999991], [104.42847800000004, 5.00077900000008], [104.42878500000006, 5.00069000000002], [104.4288840000001, 5.000744000000054], [104.42934300000007, 5.000611000000049], [104.42944200000005, 5.000665000000083], [104.42974799999996, 5.000577000000078], [104.429847, 5.000631000000112], [104.43030599999997, 5.000498000000107], [104.43040500000001, 5.000552000000141], [104.43071199999997, 5.000463000000082], [104.43081000000012, 5.000518], [104.43126999999998, 5.000384999999994], [104.43136900000002, 5.0004390000000285], [104.4316750000001, 5.0003500000001395], [104.43177400000013, 5.0004050000000575], [104.43223300000005, 5.000272000000052], [104.43233200000009, 5.000326000000086], [104.432638, 5.000237000000027], [104.43273700000003, 5.000292000000115], [104.43319700000006, 5.000158000000056], [104.43329499999999, 5.000212999999974], [104.43360200000001, 5.000124000000085], [104.43369999999993, 5.000179000000003], [104.43416000000002, 5.000045000000114], [104.434259, 5.000100000000032], [104.43456500000013, 5.000010999999972], [104.43466399999994, 5.000066000000061], [104.43512300000009, 4.999932000000001], [104.43522200000012, 4.999986999999919], [104.43552800000003, 4.99989800000003], [104.43562700000007, 4.999952000000064], [104.4360870000001, 4.999819000000059], [104.43618500000002, 4.999874000000034], [104.43649200000004, 4.999785000000088], [104.43659100000008, 4.999839000000122], [104.43705, 4.9997059999999465], [104.43714900000003, 4.999761000000092], [104.43745499999994, 4.9996719999999755], [104.43755399999998, 4.99972600000001], [104.43801300000013, 4.999593000000004], [104.43811199999993, 4.999647000000039], [104.43841900000012, 4.999557999999979], [104.43851700000005, 4.999613000000068], [104.43897700000014, 4.999480000000119], [104.43907599999994, 4.999533999999926], [104.43938200000008, 4.999445000000037], [104.43948100000006, 4.999499999999955], [104.43994000000004, 4.9993670000000066], [104.44003900000007, 4.999420999999984], [104.44034499999998, 4.999332000000095], [104.44044400000001, 4.999387000000013], [104.44090400000005, 4.999253000000124], [104.44100199999997, 4.999308000000099], [104.44130899999999, 4.999218999999982], [104.44140700000008, 4.999274000000128], [104.44186699999995, 4.999140000000011], [104.44196599999998, 4.999194999999986], [104.44227200000006, 4.99910600000004], [104.4423710000001, 4.999161000000015], [104.44283000000007, 4.999027000000069], [104.4429290000001, 4.999082000000044], [104.44323500000002, 4.998992999999928], [104.443334, 4.999047000000132], [104.44379400000008, 4.998913999999957], [104.443892, 4.998969000000102], [104.44419900000003, 4.998879999999986], [104.444298, 4.99893400000002], [104.44475699999998, 4.998801000000071], [104.44485600000002, 4.998855000000049], [104.445315, 4.9987220000001], [104.44541399999997, 4.998777000000018], [104.44572000000011, 4.998688000000129], [104.44581899999991, 4.998741999999936], [104.44627899999995, 4.998608999999988], [104.4463770000001, 4.998663000000022], [104.44668400000006, 4.998575000000017], [104.4467830000001, 4.998629000000051], [104.44724200000007, 4.998496000000046], [104.44734100000011, 4.99855000000008], [104.44764700000002, 4.998460999999963], [104.44774600000005, 4.998516000000109], [104.44820499999997, 4.9983830000001035], [104.44830400000001, 4.998437000000138], [104.44861100000003, 4.998348000000021], [104.44870900000012, 4.998402999999996], [104.44916899999998, 4.998269000000107], [104.44926800000002, 4.998324000000025], [104.4495740000001, 4.998235000000136], [104.44967300000013, 4.998290000000054], [104.45013200000011, 4.9981559999999945], [104.45023099999992, 4.998211000000083], [104.45053700000005, 4.9981220000000235], [104.45063600000003, 4.998177000000112], [104.45109600000012, 4.998043000000052], [104.45119400000004, 4.998098000000141], [104.45150100000001, 4.998009000000081], [104.45159899999999, 4.998063000000116], [104.45205900000002, 4.99793000000011], [104.45215800000005, 4.997985000000028], [104.45246400000013, 4.997896000000139], [104.452563, 4.997950000000003], [104.45302199999992, 4.997816999999998], [104.45312100000012, 4.997871000000032], [104.45342700000003, 4.997783000000027], [104.45352600000007, 4.997837000000061], [104.45398599999993, 4.997704000000056], [104.45408400000008, 4.99775800000009], [104.45439100000004, 4.9976689999999735], [104.45449000000008, 4.997724000000119], [104.45494900000006, 4.997591000000114], [104.45504800000003, 4.997644999999977], [104.455354, 4.997556000000088], [104.45545299999998, 4.997611000000006], [104.45591200000013, 4.997477000000117], [104.45601099999999, 4.997532000000035], [104.45631799999995, 4.997442999999976], [104.4564160000001, 4.997498000000064], [104.45687600000014, 4.997364000000005], [104.456975, 4.997419000000093], [104.45728100000008, 4.997330000000034], [104.45738000000011, 4.997384000000068], [104.45783900000004, 4.9972510000000625], [104.45793800000007, 4.9973059999999805], [104.45824399999998, 4.9972170000000915], [104.45834300000001, 4.997271000000126], [104.45880300000005, 4.99713800000012], [104.45890100000003, 4.997193000000038], [104.45920799999999, 4.997103999999979], [104.45930600000014, 4.997158000000013], [104.459766, 4.997025000000008], [104.45986499999998, 4.997079000000042], [104.46017100000012, 4.996989999999926], [104.46026999999992, 4.997045000000071], [104.46072900000007, 4.996912000000066], [104.4608280000001, 4.9969660000001], [104.46113400000002, 4.99687700000004], [104.46123300000005, 4.996932000000129], [104.46169300000008, 4.996798000000069], [104.461791, 4.996852999999987], [104.46209800000003, 4.996764000000098], [104.46219599999995, 4.996819000000016], [104.46265599999998, 4.996685000000127], [104.46275500000002, 4.996740000000045], [104.46306099999993, 4.996650999999986], [104.46316000000013, 4.996706000000074], [104.46361900000011, 4.996572000000015], [104.46371799999997, 4.996627000000103], [104.464178, 4.996493000000044], [104.4642760000001, 4.996548000000132], [104.46458300000012, 4.996459000000073], [104.46468100000004, 4.996513999999991], [104.46514100000007, 4.9963800000001015], [104.46524000000011, 4.9964350000000195], [104.46554600000002, 4.9963460000001305], [104.46564500000005, 4.996399999999994], [104.46610400000003, 4.996266999999989], [104.46620300000001, 4.996322000000077], [104.46650899999997, 4.996233000000018], [104.46660799999995, 4.996287000000052], [104.46706800000004, 4.996154000000047], [104.46716600000013, 4.996208000000081], [104.46747299999993, 4.9961190000000215], [104.46757199999996, 4.99617400000011], [104.46803100000011, 4.996041000000105], [104.46812999999997, 4.996095000000139], [104.46843600000005, 4.996006000000079], [104.46853500000009, 4.996060999999997], [104.46899400000001, 4.995927000000108], [104.46909300000004, 4.995982000000026], [104.46940000000006, 4.995893000000137], [104.46949799999999, 4.995948000000055], [104.46995800000002, 4.995813999999996], [104.47005700000005, 4.995869000000084], [104.47036299999996, 4.995780000000025], [104.470462, 4.995834000000059], [104.470846, 4.995723000000112], [104.664763, 4.642563999999936], [104.54274900000007, 4.575139000000036], [104.52483399999994, 4.6077770000000555], [104.5246810000001, 4.607821000000001], [104.46777100000008, 4.71147000000002], [104.31073500000002, 4.624635000000126], [104.27126200000004, 4.696478000000013], [104.27130599999992, 4.6966319999999655], [104.21669300000013, 4.795995000000005], [103.93960600000003, 4.642623000000015], [103.78080699999992, 4.931140000000141], [104.07197000000014, 5.092352000000005]]"; + List<Position> coordinates = convertToPositionList(coordinatesJson); + List<Integer> indexesToKeep = sut.getPointIndexesToKeep(coordinates, 100000, 10); + List<Integer> indexesToExpected = Arrays.asList(0, 1, 4, 187, 445, 446, 447, 450, 451, 454, 455, 456, 457); + Assert.assertEquals(indexesToExpected, indexesToKeep); + } + + @Test + public void should_not_decimate_line_with_few_points() { + String coordinatesJson = "[[178.11226380138962, -36.390207464157314], [178.1123772202456, -36.39023861556822], [178.11251344088177, -36.3902777929863], [178.7285555264073, -36.68661856799342], [178.72867223805497, -36.68668495001179]]"; + List<Position> coordinates = convertToPositionList(coordinatesJson); + Assert.assertTrue(coordinates.size() < 6); + List<Integer> indexesToKeep = sut.getPointIndexesToKeep(coordinates, 100000, 10); + Assert.assertEquals(coordinates.size(), indexesToKeep.size()); + } + + private List<Position> convertToPositionList(String coordinatesJson) { + Type listType = new TypeToken<List>() {}.getType(); + List<List<Double>> coordinates = gson.fromJson(coordinatesJson, listType); + + List<Position> positionList = new ArrayList<>(); + for (List<Double> xy : coordinates) { + positionList.add(new Position(xy.get(0), xy.get(1))); + } + return positionList; + } + +} diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimationSettingTest.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimationSettingTest.java new file mode 100644 index 0000000000000000000000000000000000000000..2b4ed8351c66c303b242403c063bcb5d510a0662 --- /dev/null +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimationSettingTest.java @@ -0,0 +1,108 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util.geo.decimator; + +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.opengroup.osdu.core.common.logging.JaxRsDpsLog; +import org.opengroup.osdu.core.common.model.http.DpsHeaders; +import org.opengroup.osdu.core.common.partition.*; +import org.opengroup.osdu.core.common.util.IServiceAccountJwtClient; +import org.springframework.test.context.junit4.SpringRunner; + +import java.util.HashMap; + +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.anyString; +import static org.powermock.api.mockito.PowerMockito.when; + +@RunWith(SpringRunner.class) +public class GeoShapeDecimationSettingTest { + private static final String PROPERTY_NAME = "indexer-decimation-enabled"; + + @InjectMocks + private GeoShapeDecimationSetting sut; + + @Mock + private DecimationSettingCache cache; + + @Mock + private JaxRsDpsLog logger; + + @Mock + private DpsHeaders headers; + + @Mock + private IPartitionFactory factory; + + @Mock + private IServiceAccountJwtClient tokenService; + + @Mock + IPartitionProvider partitionProvider; + + @Before + public void setup() { + when(this.headers.getPartitionId()).thenReturn("dataPartitionId"); + when(this.headers.getHeaders()).thenReturn(new HashMap()); + when(this.factory.create(any())).thenReturn(partitionProvider); + when(this.tokenService.getIdToken(anyString())).thenReturn("token"); + } + + @Test + public void isDecimationEnabled_return_true() throws PartitionException { + PartitionInfo partitionInfo = new PartitionInfo(); + Property property = new Property(); + property.setSensitive(false); + property.setValue("true"); + partitionInfo.getProperties().put(PROPERTY_NAME, property); + when(this.partitionProvider.get(anyString())).thenReturn(partitionInfo); + boolean enabled = sut.isDecimationEnabled(); + Assert.assertTrue(enabled); + } + + @Test + public void isDecimationEnabled_return_false_when_property_set_to_false() throws PartitionException { + PartitionInfo partitionInfo = new PartitionInfo(); + Property property = new Property(); + property.setSensitive(false); + property.setValue("false"); + partitionInfo.getProperties().put(PROPERTY_NAME, property); + when(this.partitionProvider.get(anyString())).thenReturn(partitionInfo); + boolean enabled = sut.isDecimationEnabled(); + Assert.assertFalse(enabled); + } + + @Test + public void isDecimationEnabled_return_false_when_property_does_not_exist() throws PartitionException { + PartitionInfo partitionInfo = new PartitionInfo(); + when(this.partitionProvider.get(anyString())).thenReturn(partitionInfo); + boolean enabled = sut.isDecimationEnabled(); + Assert.assertFalse(enabled); + } + + @Test + public void isDecimationEnabled_return_false_when_partitionProvider_throws_exception() throws PartitionException { + when(this.partitionProvider.get(anyString())).thenThrow(PartitionException.class); + boolean enabled = sut.isDecimationEnabled(); + Assert.assertFalse(enabled); + } + +} diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimatorTest.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimatorTest.java new file mode 100644 index 0000000000000000000000000000000000000000..bed108e2f89af157c7d4c2afce2d1ad93d9a15d2 --- /dev/null +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/GeoShapeDecimatorTest.java @@ -0,0 +1,135 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util.geo.decimator; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.google.gson.Gson; +import com.google.gson.reflect.TypeToken; +import lombok.SneakyThrows; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.stubbing.Answer; +import org.opengroup.osdu.indexer.model.GeoJsonObject; +import org.opengroup.osdu.indexer.model.geojson.*; +import org.springframework.test.context.junit4.SpringRunner; + +import java.io.BufferedReader; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.lang.reflect.Type; +import java.util.Map; + +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.ArgumentMatchers.any; +import static org.powermock.api.mockito.PowerMockito.doAnswer; + +@RunWith(SpringRunner.class) +public class GeoShapeDecimatorTest { + private final Gson gson = new Gson(); + + @InjectMocks + GeoShapeDecimator sut; + + @Mock + private GeometryDecimator decimator; + + + private final Answer<Boolean> answer = invocation -> { + GeometryCollection geometryCollection = invocation.getArgument(0); + if(geometryCollection == null || geometryCollection.getGeometries() == null) + return false; + + boolean decimated = false; + for(GeoJsonObject geoJsonObject: geometryCollection.getGeometries()) { + decimated |= ( geoJsonObject instanceof MultiLineString || + geoJsonObject instanceof LineString || + geoJsonObject instanceof MultiPolygon || + geoJsonObject instanceof Polygon); + } + return decimated; + }; + + @Before + public void setup() { + doAnswer(answer).when(decimator).decimate(any()); + } + + @Test + public void should_decimate_polyline() throws JsonProcessingException { + Map<String, Object> shapeObj = getShapeObj("geometrycollection_linestring.json"); + DecimatedResult result = sut.decimateShapeObj(shapeObj); + assertTrue(result.isDecimated); + } + + @Test + public void should_decimate_multipolyline() throws JsonProcessingException { + Map<String, Object> shapeObj = getShapeObj("geometrycollection_multilinestring.json"); + DecimatedResult result = sut.decimateShapeObj(shapeObj); + assertTrue(result.isDecimated); + } + + @Test + public void should_decimate_polygon() throws JsonProcessingException { + Map<String, Object> shapeObj = getShapeObj("geometrycollection_polygon.json"); + DecimatedResult result = sut.decimateShapeObj(shapeObj); + assertTrue(result.isDecimated); + } + + @Test + public void should_decimate_multipolygon() throws JsonProcessingException { + Map<String, Object> shapeObj = getShapeObj("geometrycollection_multipolygon.json"); + DecimatedResult result = sut.decimateShapeObj(shapeObj); + assertTrue(result.isDecimated); + } + + @Test + public void should_not_decimate_point() throws JsonProcessingException { + Map<String, Object> shapeObj = getShapeObj("geometrycollection_point.json"); + DecimatedResult result = sut.decimateShapeObj(shapeObj); + assertFalse(result.isDecimated); + } + + @Test + public void should_not_decimate_multipoint() throws JsonProcessingException { + Map<String, Object> shapeObj = getShapeObj("geometrycollection_multipoint.json"); + DecimatedResult result = sut.decimateShapeObj(shapeObj); + assertFalse(result.isDecimated); + } + + private Map<String, Object> getShapeObj(String file) { + String shapeJson = getGeoShapeFromFile(file); + Type type = new TypeToken<Map<String, Object>>() {}.getType(); + Map<String, Object> shapeObj = gson.fromJson(shapeJson, type); + return shapeObj; + } + + @SneakyThrows + private String getGeoShapeFromFile(String file) { + InputStream inStream = this.getClass().getResourceAsStream("/geo/decimator/" + file); + BufferedReader br = new BufferedReader(new InputStreamReader(inStream)); + StringBuilder stringBuilder = new StringBuilder(); + String sCurrentLine; + while ((sCurrentLine = br.readLine()) != null) + { + stringBuilder.append(sCurrentLine).append("\n"); + } + return stringBuilder.toString(); + } +} diff --git a/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/GeometryDecimatorTest.java b/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/GeometryDecimatorTest.java new file mode 100644 index 0000000000000000000000000000000000000000..bd675e2a5fd98ee09b19de8ef47d269a712a0950 --- /dev/null +++ b/indexer-core/src/test/java/org/opengroup/osdu/indexer/util/geo/decimator/GeometryDecimatorTest.java @@ -0,0 +1,163 @@ +/* + * Copyright © Schlumberger + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util.geo.decimator; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.jsontype.NamedType; +import com.google.gson.Gson; +import com.google.gson.reflect.TypeToken; +import lombok.SneakyThrows; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.stubbing.Answer; +import org.opengroup.osdu.indexer.model.geojson.*; +import org.springframework.test.context.junit4.SpringRunner; + +import javax.validation.constraints.NotNull; +import java.io.BufferedReader; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.lang.reflect.Type; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.ArgumentMatchers.anyDouble; +import static org.mockito.ArgumentMatchers.anyList; +import static org.powermock.api.mockito.PowerMockito.doAnswer; + +@RunWith(SpringRunner.class) +public class GeometryDecimatorTest { + private final Gson gson = new Gson(); + private ObjectMapper deserializerMapper; + + @InjectMocks + private GeometryDecimator decimator; + + @Mock + private DouglasPeuckerReducer reducer; + + private final Answer<List<Integer>> answer = invocation -> { + List<Position> coordinates = invocation.getArgument(0); + List<Integer> indexes = new ArrayList<>(); + if(coordinates.size() < 6) { + for(int i = 0; i < coordinates.size(); i++) { + indexes.add(0); + } + } + else { + indexes.add(0); + indexes.add(coordinates.size() -1); + } + return indexes; + }; + + + @Before + public void setup() { + deserializerMapper = createDeserializerMapper(); + doAnswer(answer).when(reducer).getPointIndexesToKeep(anyList(), anyDouble(), anyDouble()); + } + + @Test + public void should_decimate_polyline() throws JsonProcessingException { + GeometryCollection geometryCollection = getGeometryCollection("geometrycollection_linestring.json"); + boolean decimated = decimator.decimate(geometryCollection); + assertTrue(decimated); + } + + @Test + public void should_decimate_multipolyline() throws JsonProcessingException { + GeometryCollection geometryCollection = getGeometryCollection("geometrycollection_multilinestring.json"); + boolean decimated = decimator.decimate(geometryCollection); + assertTrue(decimated); + } + + @Test + public void should_decimate_polygon() throws JsonProcessingException { + GeometryCollection geometryCollection = getGeometryCollection("geometrycollection_polygon.json"); + boolean decimated = decimator.decimate(geometryCollection); + assertTrue(decimated); + } + + @Test + public void should_decimate_multipolygon() throws JsonProcessingException { + GeometryCollection geometryCollection = getGeometryCollection("geometrycollection_multipolygon.json"); + boolean decimated = decimator.decimate(geometryCollection); + assertTrue(decimated); + } + + @Test + public void should_not_decimate_point() throws JsonProcessingException { + GeometryCollection geometryCollection = getGeometryCollection("geometrycollection_point.json"); + boolean decimated = decimator.decimate(geometryCollection); + assertFalse(decimated); + } + + @Test + public void should_not_decimate_multipoint() throws JsonProcessingException { + GeometryCollection geometryCollection = getGeometryCollection("geometrycollection_multipoint.json"); + boolean decimated = decimator.decimate(geometryCollection); + assertFalse(decimated); + } + + @Test + public void should_not_decimate_small_geometry() throws JsonProcessingException { + GeometryCollection geometryCollection = getGeometryCollection("geometrycollection_small_multilinestring.json"); + boolean decimated = decimator.decimate(geometryCollection); + assertFalse(decimated); + } + + private GeometryCollection getGeometryCollection(String file) throws JsonProcessingException { + String shapeJson = getGeoShapeFromFile(file); + Type type = new TypeToken<Map<String, Object>>() {}.getType(); + Map<String, Object> shapeObj = gson.fromJson(shapeJson, type); + GeometryCollection geometryCollection = deserializerMapper.readValue(deserializerMapper.writeValueAsString(shapeObj), GeometryCollection.class); + return geometryCollection; + } + + @SneakyThrows + private String getGeoShapeFromFile(String file) { + InputStream inStream = this.getClass().getResourceAsStream("/geo/decimator/" + file); + BufferedReader br = new BufferedReader(new InputStreamReader(inStream)); + StringBuilder stringBuilder = new StringBuilder(); + String sCurrentLine; + while ((sCurrentLine = br.readLine()) != null) + { + stringBuilder.append(sCurrentLine).append("\n"); + } + return stringBuilder.toString(); + } + + @NotNull + private static ObjectMapper createDeserializerMapper() { + ObjectMapper mapper = new ObjectMapper(); + mapper.registerSubtypes(new NamedType(GeometryCollection.class, "geometrycollection")); + mapper.registerSubtypes(new NamedType(Polygon.class, "polygon")); + mapper.registerSubtypes(new NamedType(MultiPolygon.class, "multipolygon")); + mapper.registerSubtypes(new NamedType(LineString.class, "linestring")); + mapper.registerSubtypes(new NamedType(MultiLineString.class, "multilinestring")); + mapper.registerSubtypes(new NamedType(Point.class, "point")); + mapper.registerSubtypes(new NamedType(MultiPoint.class, "multipoint")); + return mapper; + } +} diff --git a/indexer-core/src/test/resources/converter/R3-json-schema/Generated/file/File.1.0.0.json b/indexer-core/src/test/resources/converter/R3-json-schema/Generated/file/File.1.0.0.json index 737a51026038f90f657d2f7aba58a8c35fc107c8..038c9a036516ce3454633199e1dc13e87f21c638 100644 --- a/indexer-core/src/test/resources/converter/R3-json-schema/Generated/file/File.1.0.0.json +++ b/indexer-core/src/test/resources/converter/R3-json-schema/Generated/file/File.1.0.0.json @@ -121,7 +121,7 @@ "description": "Schema Format Type ID", "pattern": "^srn:<namespace>:reference-data\\/SchemaFormatType:[^:]+:[0-9]*$" }, - "PreLoadFilePath": { + "PreloadFilePath": { "description": "File system path to the data file as it existed before loading to the data platform", "type": "string" }, @@ -230,4 +230,4 @@ "legal" ], "additionalProperties": false -} \ No newline at end of file +} diff --git a/indexer-core/src/test/resources/converter/R3-json-schema/Generated/file/File.1.0.0.json.res b/indexer-core/src/test/resources/converter/R3-json-schema/Generated/file/File.1.0.0.json.res index d0cc00a8d3fe76d6ff446a8433c4b895e8a88316..44a5a89ecec8ec9b421c8e322f5decb27fc12431 100644 --- a/indexer-core/src/test/resources/converter/R3-json-schema/Generated/file/File.1.0.0.json.res +++ b/indexer-core/src/test/resources/converter/R3-json-schema/Generated/file/File.1.0.0.json.res @@ -7,7 +7,7 @@ }, { "kind": "string", - "path": "PreLoadFilePath" + "path": "PreloadFilePath" }, { "kind": "string", @@ -46,4 +46,4 @@ "path": "VectorHeaderMapping" } ] -} \ No newline at end of file +} diff --git a/indexer-core/src/test/resources/converter/index-virtual-properties/unmatched-virtual-properties-schema.json.res b/indexer-core/src/test/resources/converter/index-virtual-properties/unmatched-virtual-properties-schema.json.res index 50d594ee75a44d29ce05df4a19bfdb21b564c7b5..91a70ee6e640d1211c6cc268f23134b9cba6936c 100644 --- a/indexer-core/src/test/resources/converter/index-virtual-properties/unmatched-virtual-properties-schema.json.res +++ b/indexer-core/src/test/resources/converter/index-virtual-properties/unmatched-virtual-properties-schema.json.res @@ -333,5 +333,8 @@ }, { "path" : "VirtualProperties.DefaultLocation.SpatialGeometryTypeID", "kind" : "string" + }, { + "path" : "VirtualProperties.DefaultLocation.IsDecimated", + "kind" : "boolean" }] -} \ No newline at end of file +} diff --git a/indexer-core/src/test/resources/converter/index-virtual-properties/virtual-properties-schema.json.res b/indexer-core/src/test/resources/converter/index-virtual-properties/virtual-properties-schema.json.res index 05e347e9f5cf7d8aff1d44e4867d20853ca0ebd7..59998ea9e0f535f39dcb51854c8b4f4f01691276 100644 --- a/indexer-core/src/test/resources/converter/index-virtual-properties/virtual-properties-schema.json.res +++ b/indexer-core/src/test/resources/converter/index-virtual-properties/virtual-properties-schema.json.res @@ -336,5 +336,8 @@ }, { "path" : "VirtualProperties.DefaultName", "kind" : "string" - } ] -} \ No newline at end of file + }, { + "path" : "VirtualProperties.DefaultLocation.IsDecimated", + "kind" : "boolean" + }] +} diff --git a/indexer-core/src/test/resources/geo/decimator/geometrycollection_linestring.json b/indexer-core/src/test/resources/geo/decimator/geometrycollection_linestring.json new file mode 100644 index 0000000000000000000000000000000000000000..c5d7dba6eab2005f014a21c5ccebf93b347f1b98 --- /dev/null +++ b/indexer-core/src/test/resources/geo/decimator/geometrycollection_linestring.json @@ -0,0 +1,8 @@ +{ + "geometries": [{ + "coordinates": [[104.095752, 6.3154210000001285], [104.0958690000001, 6.315621000000135], [104.09598599999998, 6.315811000000053], [104.09610300000008, 6.316001000000142], [104.09622000000002, 6.31619100000006], [104.096338, 6.3163809999999785], [104.09645500000005, 6.316571000000067], [104.09657199999998, 6.316769999999963], [104.09668900000008, 6.316960999999992], [104.09680599999996, 6.317151000000081], [104.096924, 6.317350000000033], [104.09704100000005, 6.317540000000122], [104.09715799999998, 6.31773000000004], [104.09727500000008, 6.3179289999999355], [104.09739199999996, 6.318120000000135], [104.09750900000006, 6.318319000000088], [104.09762700000005, 6.318509000000006], [104.09774399999998, 6.318699000000095], [104.09786100000008, 6.318898000000047], [104.09797799999996, 6.319088000000136], [104.09809500000006, 6.319287999999972], [104.09821300000004, 6.3194780000000605], [104.09832999999998, 6.319667999999979], [104.09844700000002, 6.319867000000102], [104.09856400000012, 6.32005700000002], [104.09868100000006, 6.3202470000001085], [104.09879900000004, 6.320447000000115], [104.09891599999997, 6.320637000000033], [104.09903300000002, 6.320835999999986], [104.09915000000012, 6.321026000000074], [104.09926700000005, 6.321225000000027], [104.09938399999993, 6.321415999999999], [104.09950199999992, 6.321615000000122], [104.09961900000002, 6.32180500000004], [104.09973600000012, 6.322003999999993], [104.09985300000005, 6.322194000000081], [104.09996999999993, 6.322393000000034], [104.10007900000005, 6.32259300000004], [104.10019599999998, 6.322783000000129], [104.10031300000009, 6.322982000000081], [104.10042099999993, 6.323181000000034], [104.10053800000003, 6.323371000000122], [104.10065500000013, 6.323570000000075], [104.10077300000012, 6.323761000000047], [104.10088100000002, 6.32396], [104.10099800000006, 6.324150000000088], [104.101115, 6.324349000000041], [104.1012320000001, 6.324539000000129], [104.10135000000008, 6.324729000000048], [104.10145799999998, 6.324929000000054], [104.10157500000003, 6.325118999999972], [104.10169200000013, 6.325318000000095], [104.10180900000006, 6.3255080000000135], [104.10192599999993, 6.325707000000136], [104.10204399999992, 6.3258970000000545], [104.10216100000002, 6.326097000000061], [104.10226900000009, 6.326286999999979], [104.10238600000002, 6.326486000000102], [104.10250300000007, 6.3266850000000545], [104.10262, 6.326874999999973], [104.10272900000012, 6.327074999999979], [104.10284600000006, 6.327274000000102], [104.10296299999993, 6.32746400000002], [104.103071, 6.327662999999973], [104.1031880000001, 6.3278530000000615], [104.10330600000009, 6.328052000000014], [104.10341399999999, 6.32825200000002], [104.10353100000003, 6.328442000000109], [104.10364800000013, 6.3286410000000615], [104.10376500000007, 6.32883099999998], [104.10387300000014, 6.3290300000001025], [104.10399100000012, 6.329220000000021], [104.104108, 6.329420000000027], [104.1042250000001, 6.329610000000116], [104.10434200000003, 6.329809000000068], [104.10445900000008, 6.329998999999987], [104.10456699999997, 6.3301980000001095], [104.10468499999996, 6.330388000000028], [104.10480200000006, 6.330588000000034], [104.104919, 6.330778000000123], [104.105027, 6.330977000000075], [104.10514400000011, 6.331176000000028], [104.1052620000001, 6.331366000000116], [104.10537, 6.331565000000069], [104.1054870000001, 6.331756000000041], [104.10559499999994, 6.331954999999994], [104.10571200000004, 6.332154000000116], [104.10582000000011, 6.332344000000035], [104.1059380000001, 6.332542999999987], [104.10605499999997, 6.33274200000011], [104.10616300000004, 6.332933000000082], [104.10628000000014, 6.333132000000035], [104.10639700000007, 6.333330999999987], [104.10650500000008, 6.333521000000076], [104.10662300000007, 6.333720000000028], [104.10674, 6.333920000000035], [104.10684800000007, 6.334110000000123], [104.10696499999995, 6.334309000000076], [104.10708200000005, 6.334508000000028], [104.10720000000003, 6.334698000000117], [104.10731700000014, 6.334897000000069], [104.10742500000003, 6.335088000000042], [104.10754200000008, 6.335286999999994], [104.10765900000001, 6.335477000000083], [104.10777600000011, 6.335676000000035], [104.1078940000001, 6.335866000000124], [104.10801100000003, 6.336065000000076], [104.10812800000008, 6.3362560000000485], [104.10824500000001, 6.336455000000001], [104.10836200000011, 6.33664500000009], [104.10847100000007, 6.336844000000042], [104.10858799999994, 6.337034000000131], [104.10870500000004, 6.337233000000083], [104.10882199999998, 6.3374240000000555], [104.10893900000008, 6.337623000000008], [104.10905700000006, 6.3378130000000965], [104.10916500000008, 6.338012000000049], [104.10928200000001, 6.338202000000138], [104.10939900000011, 6.33840100000009], [104.10951599999999, 6.3386010000000965], [104.10962400000005, 6.338791000000015], [104.10974200000004, 6.338990000000138], [104.10985899999997, 6.33918900000009], [104.10996700000004, 6.339379000000008], [104.11008399999992, 6.339579000000015], [104.11019199999998, 6.3397690000001035], [104.11030999999997, 6.339968000000056], [104.11041800000004, 6.340157999999974], [104.11053500000014, 6.340357000000097], [104.11064299999998, 6.340547000000015], [104.11076000000008, 6.340746000000138], [104.11086799999998, 6.340945999999974], [104.11098600000014, 6.341136000000063], [104.11109400000004, 6.341335000000015], [104.11121100000008, 6.341534000000138], [104.11131899999998, 6.341724000000056], [104.11143600000008, 6.341924000000063], [104.11154399999992, 6.342123000000015], [104.11166200000014, 6.342322000000138], [104.11176999999998, 6.342512000000056], [104.11188700000008, 6.342711000000008], [104.11200400000001, 6.342910000000131], [104.11211200000002, 6.343110000000138], [104.11222900000013, 6.343300000000056], [104.11234700000011, 6.343499000000008], [104.11246400000005, 6.343689000000097], [104.11257200000011, 6.3438880000000495], [104.11268899999999, 6.344078000000138], [104.11280600000009, 6.344269000000111], [104.11292400000008, 6.344459000000029], [104.11303199999998, 6.344657999999981], [104.11314900000002, 6.34484800000007], [104.11326600000012, 6.345037999999988], [104.11338300000006, 6.345228000000077], [104.11350100000004, 6.345428000000084], [104.11360900000011, 6.345618000000002], [104.11372599999999, 6.345817000000125], [104.11384300000009, 6.346007000000043], [104.11395099999999, 6.346205999999995], [104.11406800000003, 6.346396000000084], [104.11417700000004, 6.3465960000000905], [104.11429399999992, 6.346795000000043], [104.11440199999998, 6.346993999999995], [104.11451900000009, 6.347193000000118], [104.11462699999993, 6.34739200000007], [104.11474500000014, 6.347581999999932], [104.11485299999998, 6.347781999999995], [104.11497000000008, 6.347981000000118], [104.11507799999998, 6.348171000000036], [104.115186, 6.3483699999999885], [104.1153030000001, 6.348560000000077], [104.11541200000005, 6.348749999999939], [104.11552899999998, 6.348950000000002], [104.11563700000005, 6.349140000000091], [104.11575399999992, 6.349330000000009], [104.11587100000003, 6.349520000000098], [104.1159790000001, 6.349710000000016], [104.11609700000008, 6.349900000000105], [104.11621399999996, 6.350099], [104.11632200000003, 6.3502900000000295], [104.11643900000013, 6.350480000000118], [104.11655600000006, 6.350679000000071], [104.11667400000005, 6.350868999999989], [104.11679099999992, 6.351068000000112], [104.11689899999999, 6.351267000000007], [104.11701600000009, 6.3514580000000365], [104.11713299999997, 6.351656999999989], [104.11725100000001, 6.351856000000112], [104.11736800000006, 6.35204600000003], [104.11747600000012, 6.352244999999925], [104.11759300000006, 6.352444999999989], [104.11770999999993, 6.352644000000112], [104.117818, 6.35283400000003], [104.11793599999999, 6.353032999999982], [104.11804400000005, 6.353223000000071], [104.11816099999999, 6.353421999999966], [104.118269, 6.353612000000055], [104.1183860000001, 6.353812000000119], [104.11849500000005, 6.354002000000037], [104.11861199999998, 6.3541920000001255], [104.11872000000005, 6.354391000000078], [104.11883699999993, 6.354580999999939], [104.11895400000003, 6.354780000000062], [104.1190620000001, 6.354971000000091], [104.11918000000009, 6.355170000000044], [104.11928799999993, 6.3553600000001325], [104.11940500000003, 6.355559000000085], [104.1195130000001, 6.355748999999946], [104.11963000000003, 6.355948000000069], [104.11973899999998, 6.3561480000001325], [104.11985600000003, 6.356347000000085], [104.1199640000001, 6.356546000000037], [104.12008100000003, 6.356744999999933], [104.1201890000001, 6.356935000000021], [104.12030599999997, 6.357135000000085], [104.12041499999992, 6.357334000000037], [104.12053200000003, 6.357532999999989], [104.1206400000001, 6.357723000000078], [104.12075699999997, 6.357921999999974], [104.12086500000004, 6.358112000000062], [104.12098300000002, 6.358312000000126], [104.12109100000009, 6.358502000000044], [104.12120800000002, 6.358692000000133], [104.12132500000007, 6.358891000000085], [104.121442, 6.3590809999999465], [104.12155999999999, 6.359271000000035], [104.12167700000009, 6.359460999999953], [104.12179400000002, 6.359651999999983], [104.12191100000007, 6.359851000000106], [104.122028, 6.360041000000024], [104.12215500000002, 6.3602310000001125], [104.12227200000012, 6.360420999999974], [104.122389, 6.360619999999926], [104.1225060000001, 6.360811000000126], [104.12263200000007, 6.361010000000078], [104.12275000000005, 6.361199999999997], [104.12286699999999, 6.3613990000001195], [104.12298400000003, 6.361588999999981], [104.12310100000013, 6.361789000000044], [104.12321800000007, 6.361987999999997], [104.12333600000005, 6.362178000000085], [104.12345299999993, 6.362368000000004], [104.123561, 6.362567000000126], [104.1236780000001, 6.362756999999988], [104.12379500000003, 6.3629470000000765], [104.12391300000002, 6.36314700000014], [104.12403000000006, 6.363337000000058], [104.12413800000013, 6.363526999999976], [104.12425500000006, 6.363717000000065], [104.12437199999994, 6.363915999999961], [104.12448999999998, 6.364106000000049], [104.12459799999999, 6.364297000000079], [104.1247150000001, 6.364496000000031], [104.12483200000003, 6.36468600000012], [104.12494900000007, 6.364885000000072], [104.12506700000012, 6.365074999999933], [104.12517499999996, 6.365274000000056], [104.12529200000006, 6.36547400000012], [104.12540899999999, 6.365673000000072], [104.12552600000004, 6.36586299999999], [104.12563499999999, 6.366062000000113], [104.12575200000009, 6.366261000000009], [104.12585999999999, 6.366459999999961], [104.12597700000009, 6.36665099999999], [104.12608499999993, 6.366850000000113], [104.12620299999992, 6.367040000000031], [104.12631099999999, 6.367238999999927], [104.12642800000009, 6.3674290000000155], [104.12653599999993, 6.367627999999968], [104.12665300000003, 6.367818999999997], [104.1267610000001, 6.368009000000086], [104.12687900000009, 6.368208000000038], [104.12699600000002, 6.368398000000127], [104.12710400000003, 6.3685970000000225], [104.12722100000013, 6.368786999999941], [104.12733800000007, 6.368987000000004], [104.12745600000005, 6.369177000000093], [104.12757299999998, 6.369376000000045], [104.12769000000003, 6.369566000000134], [104.12780700000013, 6.369765000000029], [104.12792400000006, 6.369963999999982], [104.12804200000005, 6.370155000000011], [104.12815899999993, 6.370354000000134], [104.12827600000003, 6.370544000000052], [104.12839300000013, 6.370742999999948], [104.12851000000006, 6.370933000000036], [104.12862800000005, 6.371122999999955], [104.12874499999992, 6.371323000000018], [104.12885299999999, 6.371513000000107], [104.1289700000001, 6.371703000000025], [104.12908699999997, 6.3719019999999205], [104.12920500000001, 6.372092000000009], [104.12932200000006, 6.372281999999927], [104.12943899999999, 6.372473000000127], [104.1295560000001, 6.37267200000008], [104.12966399999993, 6.372861999999998], [104.12978199999992, 6.373061000000121], [104.12989900000002, 6.373260000000016], [104.13000700000009, 6.3734589999999685], [104.13012400000002, 6.373649999999998], [104.13024100000007, 6.373849000000121], [104.13035000000002, 6.374048000000073], [104.13046700000012, 6.3742469999999685], [104.13057500000002, 6.374445999999921], [104.13069200000012, 6.374645000000044], [104.130809, 6.374836000000073], [104.13091799999995, 6.375035000000025], [104.13103500000005, 6.375233999999921], [104.13114300000012, 6.3754240000000095], [104.13126, 6.375622999999962], [104.1313770000001, 6.375813000000051], [104.13148600000005, 6.376013000000114], [104.13160299999998, 6.376203000000032], [104.13172000000009, 6.376393000000121], [104.13183699999996, 6.3765920000000165], [104.13194500000003, 6.376781999999935], [104.13206300000002, 6.3769810000000575], [104.13218000000012, 6.377172000000087], [104.13229700000005, 6.377371000000039], [104.13240500000006, 6.377569999999935], [104.132522, 6.377760000000023], [104.13263999999998, 6.377958999999976], [104.13275700000008, 6.378159000000039], [104.13286499999992, 6.3783579999999915], [104.13298200000003, 6.37854800000008], [104.13309900000013, 6.378746999999976], [104.13321700000012, 6.378945999999928], [104.13333400000005, 6.379136000000017], [104.13344200000006, 6.37933600000008], [104.13355899999999, 6.3795259999999985], [104.1336760000001, 6.379725000000121], [104.13379400000008, 6.379914999999983], [104.13391100000001, 6.380105000000071], [104.13402800000006, 6.38029499999999], [104.13413600000013, 6.3804940000001125], [104.13425300000006, 6.380685000000142], [104.13437100000004, 6.38087500000006], [104.13448799999992, 6.381064999999921], [104.13460500000002, 6.38125500000001], [104.13472200000012, 6.381453999999962], [104.13483900000006, 6.381644000000051], [104.13495700000004, 6.381844000000115], [104.13507399999992, 6.382034000000033], [104.13518199999999, 6.382232999999928], [104.13529900000009, 6.382423000000017], [104.13541599999996, 6.382621999999969], [104.135534, 6.382812000000058], [104.13564200000002, 6.383012000000122], [104.13575900000012, 6.38320200000004], [104.13587600000005, 6.383400999999935], [104.13599299999993, 6.383600000000058], [104.13610200000011, 6.383789999999976], [104.13621899999998, 6.383989000000099], [104.13633600000009, 6.3841800000001285], [104.13645300000002, 6.384379000000081], [104.13656100000003, 6.384568999999942], [104.13667900000002, 6.384768000000065], [104.13679600000012, 6.384957999999983], [104.13691300000005, 6.385157000000106], [104.13702100000012, 6.3853480000001355], [104.137138, 6.385547000000088], [104.13725599999998, 6.385736999999949], [104.13737300000008, 6.385936000000072], [104.13748099999998, 6.386135000000024], [104.13759800000003, 6.386333999999977], [104.13771500000013, 6.386525000000006], [104.13782400000008, 6.386724000000129], [104.13794100000001, 6.386923000000024], [104.13805800000011, 6.387121999999977], [104.13816599999996, 6.387312000000065], [104.13828300000006, 6.387511000000018], [104.13840100000004, 6.387711000000081], [104.13850900000011, 6.3879009999999425], [104.13862600000004, 6.388100000000065], [104.13874299999992, 6.388289999999984], [104.13886000000002, 6.388489000000106], [104.13896899999997, 6.388679000000025], [104.13908600000008, 6.388879000000088], [104.13920299999995, 6.3890689999999495], [104.13932000000005, 6.389259000000038], [104.13942800000012, 6.3894579999999905], [104.13954600000011, 6.389648000000079], [104.13966300000004, 6.3898379999999975], [104.13977100000005, 6.390038000000061], [104.13988799999998, 6.390227999999922], [104.14000599999997, 6.390418000000011], [104.14011400000004, 6.390616999999963], [104.14023100000014, 6.390807000000052], [104.14033899999998, 6.391006000000004], [104.14045600000009, 6.391196000000093], [104.14057400000007, 6.391395999999929], [104.14068200000014, 6.391595000000052], [104.14079900000007, 6.39178499999997], [104.14091599999995, 6.391984000000093], [104.14103300000005, 6.392174000000011], [104.141142, 6.392374000000075], [104.1412590000001, 6.39257299999997], [104.14137599999998, 6.392763000000059], [104.14149300000008, 6.392962000000011], [104.14160099999998, 6.393161000000134], [104.14171900000014, 6.393351000000052], [104.14183600000007, 6.393551000000116], [104.14195299999994, 6.393740999999977], [104.14206100000001, 6.39393999999993], [104.14217800000011, 6.394130000000018], [104.1422960000001, 6.394329000000141], [104.142404, 6.394519000000059], [104.14252100000004, 6.394719000000123], [104.14262900000011, 6.394908999999984], [104.14274600000005, 6.3951079999999365], [104.142855, 6.395298000000025], [104.1429720000001, 6.395496999999978], [104.14308899999997, 6.395687000000066], [104.14319700000004, 6.395886000000019], [104.14331399999998, 6.396076999999991], [104.1434230000001, 6.3962759999999435], [104.14353999999997, 6.396475000000066], [104.14364800000004, 6.3966649999999845], [104.14376499999997, 6.396864000000107], [104.14387300000004, 6.3970540000000256], [104.14399100000003, 6.397254000000032], [104.14409900000004, 6.39744399999995], [104.14421599999997, 6.397643000000073], [104.14432400000004, 6.397832999999991], [104.14444099999992, 6.398032000000114], [104.1445500000001, 6.3982220000000325], [104.14466699999997, 6.398413000000005], [104.14477500000004, 6.398611999999957], [104.14489200000014, 6.398802000000046], [104.14499999999998, 6.399000999999998], [104.14511800000002, 6.399191000000087], [104.14523500000007, 6.399390000000039], [104.14534300000014, 6.399581000000012], [104.14546000000007, 6.399779999999964], [104.14557699999995, 6.399970000000053], [104.14568600000013, 6.400169000000005], [104.145803, 6.400368000000128], [104.1459200000001, 6.4005670000000805], [104.14603700000004, 6.400758000000053], [104.14615400000008, 6.400957000000005], [104.14627200000007, 6.401156000000128], [104.146389, 6.4013550000000805], [104.1465060000001, 6.401554000000033], [104.14661399999994, 6.401744000000122], [104.14673100000005, 6.401943999999958], [104.14684900000003, 6.4021430000000805], [104.14696600000013, 6.402332999999999], [104.14707400000003, 6.402532000000122], [104.14719100000008, 6.40272200000004], [104.14730800000001, 6.402920999999992], [104.14741699999996, 6.403111999999965], [104.14753400000006, 6.4033110000000875], [104.14764200000013, 6.403501000000006], [104.14775900000001, 6.4037000000001285], [104.14786700000008, 6.403899000000081], [104.14798500000006, 6.404098000000033], [104.14809300000013, 6.404289000000006], [104.14821000000006, 6.4044880000001285], [104.14831800000007, 6.404687000000081], [104.148435, 6.404886000000033], [104.14855299999999, 6.4050849999999855], [104.1486700000001, 6.405284999999992], [104.14877799999994, 6.405475000000081], [104.14889500000004, 6.405674000000033], [104.14901300000002, 6.4058729999999855], [104.14913000000013, 6.406072000000108], [104.14924700000006, 6.4062620000000265], [104.14936399999993, 6.406462000000033], [104.14948100000004, 6.406652000000122], [104.14958999999999, 6.40684200000004], [104.14970700000009, 6.407040999999992], [104.14982400000002, 6.407231000000081], [104.14994100000007, 6.407420999999999], [104.150058, 6.407620000000122], [104.15017599999999, 6.407811000000095], [104.15029300000009, 6.408001000000013], [104.15040099999993, 6.408191000000102], [104.15051800000003, 6.408390000000054], [104.15063600000002, 6.408579999999972], [104.15075300000012, 6.408770000000061], [104.15087000000005, 6.408970000000068], [104.15098699999993, 6.409159999999986], [104.15110400000003, 6.409359000000109], [104.15122200000002, 6.409549000000027], [104.15133900000012, 6.409747999999979], [104.15145600000005, 6.409938000000068], [104.15157299999993, 6.41012900000004], [104.15169100000008, 6.410327999999993], [104.15180800000002, 6.410518000000081], [104.15192500000012, 6.410708], [104.15205100000003, 6.4109070000001225], [104.15216900000007, 6.411097000000041], [104.15228599999995, 6.411287000000129], [104.15240300000005, 6.411478000000102], [104.15251999999998, 6.41166800000002], [104.15263700000003, 6.4118669999999724], [104.15275500000001, 6.412057000000061], [104.15287200000012, 6.412246999999979], [104.15298900000005, 6.412437000000068], [104.15310599999992, 6.412628000000041], [104.15322400000014, 6.412826999999993], [104.15334100000001, 6.413017000000082], [104.15345800000011, 6.413207], [104.15357500000005, 6.413406000000123], [104.15369300000003, 6.413596000000041], [104.15381000000014, 6.413796000000048], [104.15392700000001, 6.413986000000136], [104.15404400000011, 6.414185000000089], [104.15416100000004, 6.414384000000041], [104.15427, 6.41457400000013], [104.15438700000004, 6.414773000000082], [104.15450399999997, 6.414973000000089], [104.15462100000008, 6.415163000000007], [104.15473799999995, 6.41536200000013], [104.154856, 6.415561000000082], [104.15497300000004, 6.415751], [104.155099, 6.415941000000089], [104.15521600000011, 6.416141000000096], [104.1553340000001, 6.416331000000014], [104.15545099999997, 6.4165210000001025], [104.15556800000007, 6.416720000000055], [104.155685, 6.416909999999973], [104.15581200000003, 6.417100000000062], [104.15592900000013, 6.41728999999998], [104.156046, 6.417481000000123], [104.1561630000001, 6.417680000000075], [104.15628100000009, 6.4178699999999935], [104.15639800000002, 6.418060000000082], [104.15651500000013, 6.418259000000035], [104.156632, 6.418449000000123], [104.15674000000007, 6.41864900000013], [104.15685800000006, 6.418839000000048], [104.15697499999999, 6.4190380000000005], [104.157083, 6.419228000000089], [104.15719100000007, 6.4194270000000415], [104.157308, 6.419625999999994], [104.15741700000012, 6.419817000000137], [104.15752500000002, 6.420016000000089], [104.15764200000007, 6.420206000000007], [104.15775000000014, 6.42040500000013], [104.15785800000003, 6.4205950000000485], [104.15796699999999, 6.420785000000137], [104.15808400000009, 6.4209840000000895], [104.15819199999993, 6.421175000000062], [104.15830900000003, 6.421374000000014], [104.1584170000001, 6.421564000000103], [104.15853500000009, 6.421763000000055], [104.15864299999998, 6.421952999999974], [104.15876000000003, 6.4221520000000965], [104.15887700000013, 6.422343000000069], [104.15898500000003, 6.422542000000021], [104.15910300000002, 6.422740999999974], [104.15922000000012, 6.422931000000062], [104.15932799999996, 6.423130000000015], [104.15944500000006, 6.4233290000001375], [104.15955400000001, 6.42352000000011], [104.15967100000012, 6.423719000000062], [104.15978799999999, 6.423918000000015], [104.15989600000006, 6.4241170000001375], [104.16000400000013, 6.424307000000056], [104.16012200000011, 6.424506000000008], [104.16023000000001, 6.424696999999981], [104.16034700000006, 6.424896000000103], [104.16045500000013, 6.425086000000022], [104.16057200000006, 6.425284999999974], [104.16068100000001, 6.425475000000063], [104.16079800000011, 6.425674000000015], [104.16090599999995, 6.4258649999999875], [104.16102300000006, 6.42606400000011], [104.16113999999999, 6.4262540000000286], [104.16124900000011, 6.426444000000117], [104.16136600000004, 6.42664300000007], [104.16148299999992, 6.426832999999988], [104.16160000000002, 6.427032000000111], [104.16170899999997, 6.427232000000117], [104.16182600000008, 6.4274220000000355], [104.16194299999995, 6.427620999999988], [104.16205100000002, 6.4278110000000765], [104.16216800000012, 6.428010000000029], [104.16228600000011, 6.428208999999981], [104.162394, 6.428400000000124], [104.16251100000005, 6.428599000000077], [104.16262799999998, 6.428798000000029], [104.16273699999994, 6.428988000000118], [104.16285400000004, 6.42918700000007], [104.1629620000001, 6.429386000000022], [104.16307899999998, 6.429576999999995], [104.16318700000005, 6.429776000000118], [104.16330500000004, 6.429966000000036], [104.16342200000014, 6.430164999999988], [104.16353000000004, 6.430355000000077], [104.16364700000008, 6.430544999999995], [104.16376400000001, 6.430745000000002], [104.163882, 6.43093500000009], [104.16399000000007, 6.431134000000043], [104.16410699999994, 6.4313240000001315], [104.16422400000005, 6.43151400000005], [104.16434200000003, 6.431713000000002], [104.1644500000001, 6.431903000000091], [104.16456700000003, 6.432103000000097], [104.16468400000008, 6.432293000000016], [104.16479199999998, 6.432492000000138], [104.16490999999996, 6.432691000000091], [104.16502700000007, 6.432881000000009], [104.16513500000013, 6.433080000000132], [104.16525200000001, 6.433280000000138], [104.16536000000008, 6.433479000000091], [104.16547800000006, 6.433678000000043], [104.16558600000013, 6.433876999999995], [104.16569400000003, 6.434067000000084], [104.16581100000008, 6.434267000000091], [104.16592000000003, 6.434466000000043], [104.16603700000013, 6.434664999999995], [104.16614500000003, 6.434855000000084], [104.16626200000013, 6.4350540000000365], [104.16636999999997, 6.435252999999932], [104.16648799999996, 6.435443000000021], [104.16660500000006, 6.435643000000084], [104.16671300000013, 6.4358420000000365], [104.16683, 6.436032000000125], [104.1669470000001, 6.4362310000000775], [104.16706499999992, 6.436420999999939], [104.16717299999999, 6.436620000000062], [104.1672900000001, 6.436811000000091], [104.16740699999997, 6.437010000000043], [104.16752499999996, 6.437200000000132], [104.16763300000002, 6.4373990000000845], [104.16775000000013, 6.43759799999998], [104.16786700000006, 6.437788000000069], [104.16797500000007, 6.437988000000132], [104.16809300000006, 6.43817800000005], [104.16820100000012, 6.438377000000003], [104.16831800000006, 6.4385760000001255], [104.16842600000012, 6.438765999999987], [104.16853399999997, 6.438964999999939], [104.16865199999995, 6.439156000000139], [104.16876000000002, 6.439346000000057], [104.16887700000012, 6.43954500000001], [104.16898499999996, 6.439735000000098], [104.169103, 6.439933999999994], [104.16922000000005, 6.440124000000083], [104.16932800000012, 6.4403239999999755], [104.16944500000005, 6.440514000000064], [104.16956199999993, 6.440713000000017], [104.16968000000014, 6.440903000000105], [104.16978799999998, 6.441102000000001], [104.16990500000009, 6.441291999999919], [104.17002200000002, 6.441491000000042], [104.17014, 6.441691000000105], [104.17025700000005, 6.4418810000000235], [104.17037399999998, 6.442079999999919], [104.17048200000005, 6.442279000000042], [104.17060000000004, 6.44246899999996], [104.17071700000014, 6.442668000000083], [104.17083400000001, 6.442859000000112], [104.17094200000008, 6.443058000000065], [104.17105900000001, 6.443247999999926], [104.171177, 6.443438000000015], [104.1712940000001, 6.443627999999933], [104.17141099999998, 6.443827000000056], [104.17151900000005, 6.444018000000085], [104.17163700000003, 6.444208000000003], [104.17175400000013, 6.444398000000092], [104.17187100000001, 6.444587999999953], [104.17198800000011, 6.444778000000042], [104.17210599999993, 6.444976999999994], [104.17223200000006, 6.445167000000083], [104.172349, 6.4453580000001125], [104.17246600000004, 6.445557000000065], [104.17258400000003, 6.445746999999926], [104.17270100000013, 6.445946000000049], [104.17281800000006, 6.446135999999967], [104.17293499999994, 6.44633500000009], [104.17305299999998, 6.446534999999983], [104.17317000000003, 6.446725000000072], [104.17328700000013, 6.446923999999967], [104.17340400000006, 6.447114000000056], [104.17352099999994, 6.447313000000008], [104.17363899999992, 6.447503000000097], [104.17375600000003, 6.44770299999999], [104.17387300000013, 6.447893000000079], [104.17398100000003, 6.44808299999994], [104.17409900000001, 6.448282000000063], [104.17421600000006, 6.448471999999981], [104.17433299999999, 6.448671000000104], [104.17445000000009, 6.448862000000133], [104.17455900000004, 6.449061000000086], [104.17467599999998, 6.449250999999947], [104.17479300000002, 6.44945000000007], [104.17491000000012, 6.449639999999988], [104.17502800000011, 6.449839000000111], [104.17513600000001, 6.450038000000063], [104.17525300000011, 6.450238000000127], [104.17536999999999, 6.450427999999988], [104.17547800000006, 6.45062699999994], [104.17559600000004, 6.450826000000063], [104.17571299999997, 6.451015999999981], [104.17582099999998, 6.451215000000104], [104.17593800000009, 6.451406000000134], [104.17605600000007, 6.451605000000029], [104.17616400000014, 6.451794999999947], [104.17628100000007, 6.451985000000036], [104.17638899999992, 6.452183999999988], [104.17650600000002, 6.452374000000077], [104.17661499999997, 6.452574000000141], [104.17673200000007, 6.452764000000002], [104.17684000000014, 6.45295399999992], [104.17695700000002, 6.453153000000043], [104.17706599999997, 6.453343000000132], [104.17718300000007, 6.453542000000084], [104.17729100000014, 6.453741000000036], [104.17740800000007, 6.453932000000009], [104.17752499999995, 6.454130999999961], [104.17763400000007, 6.454330000000084], [104.177751, 6.454529000000036], [104.1778680000001, 6.454727999999989], [104.17797599999994, 6.454918000000077], [104.17809399999999, 6.455118000000084], [104.17821100000003, 6.455317000000036], [104.17832800000014, 6.455515999999989], [104.17844500000007, 6.455706000000077], [104.17855300000008, 6.45590500000003], [104.17867100000012, 6.4560950000001185], [104.178788, 6.456294999999955], [104.1789050000001, 6.456485000000043], [104.179013, 6.456683999999996], [104.17913099999998, 6.456874000000084], [104.17924800000003, 6.457073000000037], [104.17936500000013, 6.457263000000125], [104.17947300000003, 6.4574629999999615], [104.17959100000002, 6.45765300000005], [104.17969900000008, 6.457852000000003], [104.17981599999996, 6.458051000000125], [104.17993300000006, 6.458241000000044], [104.18004100000013, 6.458439999999996], [104.18015900000012, 6.4586309999999685], [104.18026700000001, 6.458821000000057], [104.18038400000006, 6.4590200000000095], [104.18049200000013, 6.459210000000098], [104.18061000000012, 6.459409000000051], [104.18071800000001, 6.459599000000139], [104.18083500000012, 6.4597890000000575], [104.18094299999996, 6.459989000000064], [104.18106000000006, 6.460178999999982], [104.18116900000001, 6.460378000000105], [104.18128600000011, 6.460568000000023], [104.18140299999999, 6.460758000000112], [104.18152000000009, 6.4609570000000645], [104.18162900000004, 6.461148000000037], [104.18174599999998, 6.461346999999989], [104.18186300000008, 6.461537000000078], [104.18198899999999, 6.46173600000003], [104.18210699999997, 6.461934999999983], [104.18222400000008, 6.462125000000071], [104.18234100000001, 6.462325000000078], [104.18245800000011, 6.462514999999996], [104.1825760000001, 6.462714000000119], [104.18269299999997, 6.462913000000071], [104.18281900000011, 6.46310299999999], [104.18293600000004, 6.4633020000001125], [104.18305400000003, 6.463493000000085], [104.18317100000013, 6.463683000000003], [104.183288, 6.463882000000126], [104.1834050000001, 6.464072000000044], [104.1835230000001, 6.464262000000133], [104.18364000000003, 6.464461000000085], [104.18374800000004, 6.4646510000000035], [104.18386500000014, 6.464841999999976], [104.18398299999996, 6.465032000000065], [104.18410000000006, 6.465231000000017], [104.18421699999999, 6.465421000000106], [104.184325, 6.465620000000058], [104.18444299999999, 6.465809999999976], [104.18456000000009, 6.466000000000065], [104.18467700000002, 6.466200000000072], [104.18479400000012, 6.46638999999999], [104.18491200000011, 6.466589000000113], [104.18502899999999, 6.466788000000065], [104.18515500000012, 6.466977999999983], [104.18527200000005, 6.46717799999999], [104.18539000000004, 6.467368000000079], [104.18550699999992, 6.467567000000031], [104.18562400000002, 6.46775700000012], [104.18574100000012, 6.467956000000072], [104.18585900000011, 6.46814599999999], [104.18597600000004, 6.468336000000079], [104.18609300000008, 6.4685360000000856], [104.18621000000002, 6.468726000000004], [104.186328, 6.4689160000000925], [104.1864450000001, 6.469106000000011], [104.18656200000004, 6.469296000000099], [104.18667900000008, 6.469495000000052], [104.18679700000007, 6.4696850000001405], [104.186914, 6.469876000000113], [104.1870310000001, 6.470066000000031], [104.18713899999995, 6.47025600000012], [104.18725699999999, 6.470455000000072], [104.18737400000003, 6.47064499999999], [104.18749100000014, 6.470835000000079], [104.18760800000007, 6.471035000000086], [104.18772600000005, 6.471225000000004], [104.18784299999993, 6.471424000000127], [104.18796000000003, 6.471614000000045], [104.18807700000013, 6.471812999999997], [104.18819500000012, 6.472003000000086], [104.18830300000002, 6.472202000000038], [104.18842000000006, 6.472402000000045], [104.188537, 6.472592000000134], [104.18865499999998, 6.472791000000086], [104.18876300000005, 6.472990000000038], [104.18887999999998, 6.473180000000127], [104.188988, 6.4733790000000795], [104.1891050000001, 6.473579000000086], [104.18921400000005, 6.473769000000004], [104.18933099999998, 6.473968000000127], [104.18944800000008, 6.4741670000000795], [104.18955599999993, 6.474356999999998], [104.18967400000008, 6.4745560000001205], [104.18978199999998, 6.474747000000093], [104.18989900000008, 6.474946000000045], [104.19000699999992, 6.475136000000134], [104.19012400000003, 6.475335000000086], [104.19024200000001, 6.475534000000039], [104.19035000000008, 6.4757240000001275], [104.19046700000001, 6.475924000000134], [104.19058400000006, 6.476114000000052], [104.19069300000007, 6.476313000000005], [104.19080999999994, 6.4765120000001275], [104.19092700000004, 6.476702000000046], [104.19103500000011, 6.476900999999998], [104.1911530000001, 6.477101000000005], [104.19126999999997, 6.477291000000093], [104.19137800000004, 6.477490000000046], [104.19149499999997, 6.477688999999998], [104.19161300000013, 6.477879000000087], [104.19172100000003, 6.478078000000039], [104.19183800000008, 6.478278000000046], [104.19195500000001, 6.4784680000001345], [104.19206300000008, 6.478667000000087], [104.19218100000006, 6.478866000000039], [104.19228900000013, 6.479064999999991], [104.192406, 6.479264000000114], [104.19251400000007, 6.479453999999976], [104.19262300000003, 6.479654000000039], [104.19274000000013, 6.479852999999991], [104.19284800000003, 6.48004300000008], [104.19296500000007, 6.4802420000000325], [104.19307300000014, 6.480440999999928], [104.19319100000013, 6.480631000000017], [104.19329900000002, 6.48083100000008], [104.19341600000013, 6.481020999999998], [104.19352399999997, 6.481220000000121], [104.19364199999995, 6.481410000000039], [104.19375900000006, 6.481608999999935], [104.19386700000013, 6.481799000000024], [104.193984, 6.481999000000087], [104.19410200000004, 6.482189000000005], [104.19421899999992, 6.482388000000128], [104.19433600000002, 6.4825870000000805], [104.19445300000012, 6.482776999999942], [104.19457100000011, 6.482976000000065], [104.19468799999999, 6.483176000000128], [104.19480500000009, 6.483366000000046], [104.19492200000002, 6.483564999999999], [104.19503099999997, 6.4837640000001215], [104.19514800000007, 6.483953999999983], [104.19526499999995, 6.484152999999935], [104.19538200000005, 6.484343000000024], [104.19550000000004, 6.484534000000053], [104.19561700000014, 6.484724000000142], [104.19573400000007, 6.484923000000094], [104.19585099999995, 6.485112999999956], [104.19596899999993, 6.4853030000000444], [104.19608600000004, 6.4854839999999285], [104.19620300000014, 6.485674000000017], [104.19632999999999, 6.485865000000047], [104.19644700000009, 6.486055000000135], [104.196573, 6.486236000000019], [104.19669900000014, 6.486426000000108], [104.19681700000012, 6.486606999999935], [104.19694300000009, 6.486797000000024], [104.197069, 6.486978000000079], [104.19719600000002, 6.487158999999963], [104.19732199999999, 6.487349999999992], [104.19745699999999, 6.487531000000047]], + "type": "linestring" + } + ], + "type": "geometrycollection" +} \ No newline at end of file diff --git a/indexer-core/src/test/resources/geo/decimator/geometrycollection_multilinestring.json b/indexer-core/src/test/resources/geo/decimator/geometrycollection_multilinestring.json new file mode 100644 index 0000000000000000000000000000000000000000..b1eea721632657c4ee6e5068eac1ae3d33afad30 --- /dev/null +++ b/indexer-core/src/test/resources/geo/decimator/geometrycollection_multilinestring.json @@ -0,0 +1,8 @@ +{ + "geometries": [{ + "coordinates": [[[103.918409, 6.340435000000127], [103.9185260000001, 6.340616000000011], [103.91864299999997, 6.340797000000066], [103.91876000000008, 6.340979000000004], [103.91887700000001, 6.341160000000059], [103.91899400000005, 6.341340999999943], [103.91911099999999, 6.341521999999998], [103.91922899999997, 6.341712000000086], [103.91933700000004, 6.341902000000005], [103.91945399999992, 6.342093000000034], [103.91957100000002, 6.342283000000123], [103.91969699999999, 6.342482000000018], [103.91981400000009, 6.342671999999936], [103.91993099999996, 6.342862000000025], [103.92004800000007, 6.343052000000114], [103.92017500000009, 6.343242999999973], [103.92029200000002, 6.343433000000061], [103.92041799999993, 6.343631999999957], [103.92053500000003, 6.343822000000046], [103.92065200000013, 6.344011999999964], [103.920769, 6.344202999999993], [103.92087700000008, 6.344402000000116], [103.92099400000001, 6.344592000000034], [103.92110200000008, 6.34479099999993], [103.92122000000006, 6.3449900000000525], [103.92132800000007, 6.345181000000082], [103.921445, 6.345380000000034], [103.92155300000007, 6.3455789999999865], [103.92166999999995, 6.345769000000075], [103.92177800000002, 6.345967999999971], [103.92189500000012, 6.346168000000034], [103.92200300000002, 6.3463669999999865], [103.92212000000006, 6.346557000000075], [103.92222800000013, 6.346756000000028], [103.92234600000012, 6.346956000000034], [103.92245400000002, 6.347154999999987], [103.92256200000008, 6.347354000000109], [103.92267899999996, 6.347553000000062], [103.92278700000003, 6.347752000000014], [103.92290400000013, 6.347952000000021], [103.92301199999997, 6.348142000000109], [103.92312900000007, 6.348341000000062], [103.923246, 6.34853099999998], [103.92336300000005, 6.348730000000103], [103.9234810000001, 6.348921000000075], [103.92359799999997, 6.3491109999999935], [103.92371500000007, 6.349310000000116], [103.923832, 6.349500000000035], [103.92394900000005, 6.349690000000123], [103.92406599999998, 6.34989000000013], [103.92418300000008, 6.350089000000082], [103.92429099999993, 6.3502790000000005], [103.92440800000003, 6.350478000000123], [103.9245160000001, 6.350677000000076], [103.92463400000008, 6.350877000000082], [103.92474199999998, 6.351076000000035], [103.92485900000003, 6.351266000000123], [103.92497600000013, 6.351465000000076], [103.92508400000003, 6.351654999999994], [103.92520100000007, 6.3518550000000005], [103.925318, 6.352045000000089], [103.9254350000001, 6.352235000000007], [103.92555199999998, 6.35243400000013], [103.92567900000006, 6.3526240000000485], [103.92579599999993, 6.352815000000021], [103.92591300000004, 6.35300500000011], [103.926039, 6.353195000000028], [103.92615600000005, 6.353385000000117], [103.92628200000001, 6.353584000000069], [103.92639900000012, 6.3537750000000415], [103.9265170000001, 6.35396499999996], [103.92663399999998, 6.354155000000048], [103.92674200000005, 6.354354000000001], [103.92685899999998, 6.3545440000000895], [103.92696700000005, 6.354743999999926], [103.92707500000006, 6.354934000000014], [103.92718300000013, 6.355132999999967], [103.92730000000006, 6.3553320000000895], [103.92740800000007, 6.355531000000042], [103.92751600000014, 6.3557210000001305], [103.92762499999992, 6.355920999999967], [103.92773299999999, 6.356119999999919], [103.92784100000006, 6.356319000000042], [103.92795799999993, 6.356517999999994], [103.928066, 6.356718000000058], [103.9281830000001, 6.356916999999953], [103.92829099999994, 6.357116000000076], [103.92840800000005, 6.357315000000028], [103.92851600000012, 6.357513999999981], [103.92863300000005, 6.357714000000044], [103.92874999999992, 6.3579129999999395], [103.92886800000008, 6.358112000000062], [103.92898500000001, 6.358311000000015], [103.92909300000008, 6.358501000000103], [103.92920999999996, 6.358700999999996], [103.92932700000006, 6.358900000000119], [103.92944399999999, 6.359099000000015], [103.92956100000009, 6.359288999999933], [103.92967799999997, 6.359479000000022], [103.92979599999995, 6.359679000000085], [103.92990400000002, 6.359869000000003], [103.93002100000012, 6.360059000000092], [103.930138, 6.360248999999953], [103.9302550000001, 6.360439000000042], [103.93037200000003, 6.3606300000000715], [103.93048900000014, 6.360829000000024], [103.93060600000001, 6.3610190000001126], [103.93071400000008, 6.361209000000031], [103.93083200000007, 6.361407999999926], [103.930949, 6.361599000000126], [103.93106600000004, 6.3617980000000784], [103.93118299999998, 6.361997000000031], [103.93129100000004, 6.3621870000001195], [103.93140799999992, 6.362386000000072], [103.93152500000002, 6.3625860000000785], [103.93164200000012, 6.362785000000031], [103.93176000000011, 6.3629750000001195], [103.93187700000004, 6.363174000000072], [103.93200299999995, 6.36336399999999], [103.93212000000005, 6.363563999999997], [103.93223699999999, 6.363754000000085], [103.93236300000007, 6.363944000000004], [103.93248, 6.3641430000001264], [103.9325970000001, 6.364333000000045], [103.93271500000009, 6.364524000000017], [103.93283200000002, 6.364714000000106], [103.93294900000006, 6.364904000000024], [103.93305700000013, 6.365094000000113], [103.93316500000003, 6.365293000000065], [103.93328200000008, 6.365493000000072], [103.93338999999997, 6.365692000000024], [103.93349800000004, 6.365890999999976], [103.93360600000011, 6.366090000000099], [103.93371399999995, 6.366289000000052], [103.93383199999994, 6.366498000000092], [103.93394, 6.366697000000045], [103.93405700000011, 6.366895999999997], [103.93416499999995, 6.367086000000086], [103.93428200000005, 6.367286000000092], [103.93439899999998, 6.367485000000045], [103.93451600000009, 6.367675000000133], [103.93462399999993, 6.367865000000052], [103.93474100000003, 6.368064000000004], [103.93485900000002, 6.368254000000093], [103.93496700000009, 6.368454000000099], [103.93507499999993, 6.368653000000052], [103.93519200000003, 6.368861000000038], [103.9353000000001, 6.36905999999999], [103.935408, 6.369269000000031], [103.935516, 6.369477000000018], [103.93562400000008, 6.3696760000001404], [103.93573199999997, 6.369884000000127], [103.93584900000002, 6.370083999999963], [103.93595700000009, 6.370283000000086], [103.93607500000007, 6.370482000000038], [103.936192, 6.370672000000127], [103.93630000000007, 6.370871000000079], [103.93641699999995, 6.371062000000052], [103.93653400000005, 6.37125199999997], [103.93664200000012, 6.371442000000059], [103.93674999999996, 6.371641000000011], [103.93686700000006, 6.3718310000001], [103.93697500000013, 6.372021000000018], [103.93708300000003, 6.372221000000025], [103.93718300000012, 6.372419999999977], [103.93729099999996, 6.3726190000001], [103.93739900000003, 6.372818000000052], [103.9375070000001, 6.373017000000004], [103.937615, 6.373217000000011], [103.937723, 6.3734249999999975], [103.93783100000007, 6.37362400000012], [103.937948, 6.373823000000073], [103.93806500000005, 6.374023000000136], [103.93817300000012, 6.374222000000032], [103.93829000000005, 6.37441199999995], [103.93840800000004, 6.374611000000073], [103.93852500000014, 6.374800999999991], [103.93863299999998, 6.375001000000054], [103.93875000000008, 6.375190999999916], [103.93886700000002, 6.375381000000004], [103.93898400000006, 6.375570999999923], [103.939101, 6.375761000000011], [103.9392180000001, 6.3759510000001], [103.93933600000008, 6.376142000000129], [103.93945300000001, 6.376332000000048], [103.93957000000006, 6.376522000000136], [103.93968699999999, 6.376721000000032], [103.9398040000001, 6.37691099999995], [103.93993, 6.377101999999979], [103.9400470000001, 6.377292000000068], [103.94016500000009, 6.377481999999986], [103.94028200000002, 6.377672000000075], [103.94040799999993, 6.3778709999999705], [103.94052500000004, 6.378062], [103.94064200000014, 6.378252000000089], [103.94075900000007, 6.378442000000007], [103.94087599999995, 6.37864100000013], [103.94099399999993, 6.378831000000048], [103.94111100000003, 6.3790310000000545], [103.9412190000001, 6.379230000000007], [103.94133599999998, 6.37942900000013], [103.94145300000008, 6.379628000000082], [103.94156099999998, 6.379818], [103.94166900000005, 6.380018000000007], [103.94177700000006, 6.38021700000013], [103.94188500000013, 6.380416000000082], [103.94199300000002, 6.380606], [103.94210199999998, 6.380805000000123], [103.94220100000001, 6.38100500000013], [103.94230900000002, 6.381195000000048], [103.94241700000009, 6.381394], [103.94252499999999, 6.381593000000123], [103.942633, 6.381792000000075], [103.94274100000007, 6.381991000000028], [103.942858, 6.382191000000034], [103.9429750000001, 6.382381000000123], [103.94308299999994, 6.382580000000075], [103.94320099999993, 6.382779000000028], [103.94331800000003, 6.382979000000034], [103.94343500000014, 6.383169000000123], [103.94355200000001, 6.383359000000041], [103.94366900000011, 6.383557999999994], [103.94378600000005, 6.383748000000082], [103.94390299999992, 6.383938000000001], [103.94402000000002, 6.384128999999973], [103.94413800000001, 6.384328000000096], [103.94425500000011, 6.384518000000014], [103.94437200000004, 6.384717000000137], [103.94448899999992, 6.384907000000055], [103.94459699999999, 6.385107000000062], [103.94471400000009, 6.38529699999998], [103.94483099999997, 6.385496000000103], [103.94493900000003, 6.385695000000055], [103.94505700000002, 6.385895000000062], [103.94516500000009, 6.38608499999998], [103.94527299999999, 6.386284000000103], [103.94539000000003, 6.386483000000055], [103.9454980000001, 6.3866820000000075], [103.94561500000003, 6.386882000000014], [103.9457230000001, 6.387072000000103], [103.94583999999998, 6.387271000000055], [103.94595700000008, 6.3874700000000075], [103.94607500000006, 6.387660000000096], [103.946192, 6.3878500000000145], [103.94631800000008, 6.388050000000021], [103.94643500000001, 6.38824000000011], [103.94655200000011, 6.388430000000028], [103.94666899999999, 6.388620000000117], [103.94678600000009, 6.388810000000035], [103.94690400000007, 6.3890010000000075], [103.947021, 6.389190999999926], [103.94713800000011, 6.389381000000014], [103.94725499999998, 6.389580000000137], [103.94736300000005, 6.38977900000009], [103.94747999999998, 6.389978999999926], [103.947588, 6.390169000000014], [103.9477050000001, 6.390367999999967], [103.94781400000005, 6.39056700000009], [103.94793099999998, 6.390766000000042], [103.94803900000005, 6.390957000000071], [103.94814700000006, 6.391155999999967], [103.94825500000013, 6.3913460000000555], [103.94836300000003, 6.391545000000008], [103.94846200000006, 6.391744000000131], [103.94857000000007, 6.391944000000024], [103.948687, 6.392134000000112], [103.94879500000008, 6.392342000000042], [103.94890400000003, 6.392540999999994], [103.94902100000013, 6.392740000000117], [103.94912899999997, 6.39294000000001], [103.94924600000007, 6.393139000000133], [103.949363, 6.393328999999994], [103.94948000000005, 6.393527999999947], [103.94959699999998, 6.393718000000035], [103.94971400000009, 6.393909000000065], [103.94982300000004, 6.394090000000119], [103.94994000000014, 6.3942800000000375], [103.95005700000002, 6.394470000000126], [103.95016500000008, 6.394659999999988], [103.95028200000002, 6.394850000000076], [103.95039900000006, 6.39505000000014], [103.95050700000013, 6.395240000000058], [103.95062400000006, 6.39543900000001], [103.95074200000005, 6.39564699999994], [103.95085000000012, 6.395846000000063], [103.95096699999999, 6.396046000000126], [103.95107500000006, 6.396245000000079], [103.95119199999999, 6.396444000000031], [103.95130900000004, 6.39663400000012], [103.9514170000001, 6.396834000000126], [103.951525, 6.3970240000000445], [103.95164200000005, 6.397222999999997], [103.95176000000009, 6.3974130000000855], [103.95186799999993, 6.397612000000038], [103.95198500000004, 6.3978020000001266], [103.95210200000014, 6.398002000000133], [103.95221900000001, 6.398192000000051], [103.95233600000012, 6.398391000000004], [103.95245300000005, 6.398590000000127], [103.95257100000003, 6.398780000000045], [103.95268800000014, 6.398980000000051], [103.95281400000005, 6.39917000000014], [103.95293099999998, 6.399360000000058], [103.95304800000008, 6.3995499999999765], [103.95316499999996, 6.399740000000065], [103.95328200000006, 6.399940000000072], [103.95340000000004, 6.40012999999999], [103.95350800000011, 6.400320000000079], [103.95362499999999, 6.400519000000031], [103.95374200000009, 6.4007179999999835], [103.95384999999999, 6.40091799999999], [103.95396700000009, 6.401108000000079], [103.95407499999993, 6.401307000000031], [103.95419200000003, 6.4015059999999835], [103.95430099999999, 6.401705000000106], [103.95441800000009, 6.401905000000113], [103.95453499999996, 6.402095000000031], [103.95465200000007, 6.40228500000012], [103.95476000000014, 6.402484000000072], [103.95487700000007, 6.40267399999999], [103.95499399999994, 6.4028650000001335], [103.95511100000004, 6.403055000000052], [103.95522900000003, 6.40324500000014], [103.95534600000013, 6.403444000000093], [103.95546300000001, 6.403634000000011], [103.95558000000011, 6.403834000000018], [103.95569700000004, 6.404024000000106], [103.95581399999992, 6.404223000000059], [103.95593100000002, 6.404412999999977], [103.95604900000001, 6.4046030000000655], [103.95616600000011, 6.404792999999984], [103.95628300000004, 6.404983999999956], [103.95639999999992, 6.405174000000045], [103.95652600000005, 6.405364000000134], [103.95664299999999, 6.405554000000052], [103.95676099999997, 6.405744000000141], [103.95687800000007, 6.405943999999977], [103.95699499999995, 6.4061340000000655], [103.95711200000005, 6.406333000000018], [103.95722899999998, 6.4065230000001065], [103.957337, 6.406722000000059], [103.9574540000001, 6.406922000000122], [103.957562, 6.407121000000018], [103.95767999999998, 6.40731999999997], [103.95778800000005, 6.407510000000059], [103.95789600000006, 6.407709000000011], [103.95800400000013, 6.407909000000075], [103.95811200000003, 6.408098999999936], [103.95822000000004, 6.408298000000059], [103.95832800000011, 6.408487999999977], [103.958436, 6.4086870000001], [103.95854400000007, 6.408877000000018], [103.95866200000006, 6.409077000000082], [103.95877000000007, 6.409275999999977], [103.958887, 6.409466000000066], [103.9590040000001, 6.409665000000018], [103.95911199999995, 6.409865000000082], [103.95922900000005, 6.410055], [103.95933700000012, 6.410254000000123], [103.95945400000005, 6.410443999999984], [103.959563, 6.410642999999936], [103.95967100000001, 6.410842000000059], [103.95978800000012, 6.411042000000123], [103.95989600000001, 6.411232000000041], [103.96001300000012, 6.411430999999936], [103.96012099999996, 6.411630000000059], [103.96023800000006, 6.411830000000123], [103.96035499999999, 6.412020000000041], [103.96047299999998, 6.412218999999993], [103.96059900000006, 6.412409000000082], [103.96071599999999, 6.412598999999943], [103.96084200000013, 6.412779999999998], [103.960959, 6.412971000000027], [103.96108500000014, 6.413161000000116], [103.96120299999995, 6.413342], [103.96132900000009, 6.413532000000089], [103.96144600000002, 6.413722000000007], [103.96156300000007, 6.413912000000096], [103.96168, 6.414112000000102], [103.96178800000007, 6.414302000000021], [103.96190600000006, 6.414492000000109], [103.96201400000012, 6.414691000000062], [103.96212199999997, 6.414890000000014], [103.96223900000007, 6.415090000000021], [103.96234700000014, 6.415280000000109], [103.96246400000001, 6.415479000000062], [103.96257200000008, 6.415678000000014], [103.96268900000001, 6.415868000000103], [103.96279700000002, 6.416068000000109], [103.96291500000007, 6.4162580000000276], [103.96302300000008, 6.41645699999998], [103.96314000000001, 6.416647000000069], [103.96324800000008, 6.416846000000021], [103.96334700000006, 6.417046000000028], [103.96345500000012, 6.41724499999998], [103.96356300000002, 6.417444000000103], [103.96366200000006, 6.417643000000055], [103.96377000000007, 6.417842000000007], [103.9638690000001, 6.418042000000014], [103.96397800000005, 6.418232000000103], [103.96407700000009, 6.418431000000055], [103.96418499999999, 6.418630000000007], [103.964293, 6.41882900000013], [103.96440100000007, 6.419019000000048], [103.96450900000013, 6.419219000000055], [103.96461699999998, 6.419418000000007], [103.96473400000008, 6.41961700000013], [103.96484199999998, 6.4198070000000484], [103.96495900000008, 6.420006000000001], [103.96507700000006, 6.420206000000007], [103.96519399999994, 6.42040500000013], [103.96531100000004, 6.4205950000000485], [103.96542799999997, 6.420794000000001], [103.96554500000002, 6.4209840000000895], [103.96566200000012, 6.421184000000096], [103.96577900000005, 6.4213830000000485], [103.965888, 6.421573000000137], [103.96600500000011, 6.4217720000000895], [103.96611299999995, 6.421972000000096], [103.96622100000002, 6.4221710000000485], [103.96632000000005, 6.422370000000001], [103.96642800000012, 6.422569000000124], [103.96652699999993, 6.422768000000076], [103.966635, 6.422967000000028], [103.96673400000003, 6.423167000000035], [103.96684200000004, 6.423365999999987], [103.96696000000009, 6.423556000000076], [103.96706799999993, 6.423755000000028], [103.96718500000003, 6.423945000000117], [103.96730200000013, 6.4241360000000896], [103.96742800000004, 6.424326000000008], [103.96754499999997, 6.4245160000000965], [103.967672, 6.424706000000015], [103.96779800000013, 6.424896000000103], [103.96792400000004, 6.425087000000076], [103.96805, 6.425276999999994], [103.96816700000011, 6.425467000000083], [103.96829400000013, 6.425657000000001], [103.9684200000001, 6.425838000000056], [103.968546, 6.426027999999974]], [[103.918409, 6.340435000000127], [103.9185260000001, 6.340616000000011], [103.91864299999997, 6.340797000000066], [103.91876000000008, 6.340979000000004], [103.91887700000001, 6.341160000000059], [103.91899400000005, 6.341340999999943], [103.91911099999999, 6.341521999999998], [103.91922899999997, 6.341712000000086], [103.91933700000004, 6.341902000000005], [103.91945399999992, 6.342093000000034], [103.91957100000002, 6.342283000000123], [103.91969699999999, 6.342482000000018], [103.91981400000009, 6.342671999999936], [103.91993099999996, 6.342862000000025], [103.92004800000007, 6.343052000000114], [103.92017500000009, 6.343242999999973], [103.92029200000002, 6.343433000000061], [103.92041799999993, 6.343631999999957], [103.92053500000003, 6.343822000000046], [103.92065200000013, 6.344011999999964], [103.920769, 6.344202999999993], [103.92087700000008, 6.344402000000116], [103.92099400000001, 6.344592000000034], [103.92110200000008, 6.34479099999993], [103.92122000000006, 6.3449900000000525], [103.92132800000007, 6.345181000000082], [103.921445, 6.345380000000034], [103.92155300000007, 6.3455789999999865], [103.92166999999995, 6.345769000000075], [103.92177800000002, 6.345967999999971], [103.92189500000012, 6.346168000000034], [103.92200300000002, 6.3463669999999865], [103.92212000000006, 6.346557000000075], [103.92222800000013, 6.346756000000028], [103.92234600000012, 6.346956000000034], [103.92245400000002, 6.347154999999987], [103.92256200000008, 6.347354000000109], [103.92267899999996, 6.347553000000062], [103.92278700000003, 6.347752000000014], [103.92290400000013, 6.347952000000021], [103.92301199999997, 6.348142000000109], [103.92312900000007, 6.348341000000062], [103.923246, 6.34853099999998], [103.92336300000005, 6.348730000000103], [103.9234810000001, 6.348921000000075], [103.92359799999997, 6.3491109999999935], [103.92371500000007, 6.349310000000116], [103.923832, 6.349500000000035], [103.92394900000005, 6.349690000000123], [103.92406599999998, 6.34989000000013], [103.92418300000008, 6.350089000000082], [103.92429099999993, 6.3502790000000005], [103.92440800000003, 6.350478000000123], [103.9245160000001, 6.350677000000076], [103.92463400000008, 6.350877000000082], [103.92474199999998, 6.351076000000035], [103.92485900000003, 6.351266000000123], [103.92497600000013, 6.351465000000076], [103.92508400000003, 6.351654999999994], [103.92520100000007, 6.3518550000000005], [103.925318, 6.352045000000089], [103.9254350000001, 6.352235000000007], [103.92555199999998, 6.35243400000013], [103.92567900000006, 6.3526240000000485], [103.92579599999993, 6.352815000000021], [103.92591300000004, 6.35300500000011], [103.926039, 6.353195000000028], [103.92615600000005, 6.353385000000117], [103.92628200000001, 6.353584000000069], [103.92639900000012, 6.3537750000000415], [103.9265170000001, 6.35396499999996], [103.92663399999998, 6.354155000000048], [103.92674200000005, 6.354354000000001], [103.92685899999998, 6.3545440000000895], [103.92696700000005, 6.354743999999926], [103.92707500000006, 6.354934000000014], [103.92718300000013, 6.355132999999967], [103.92730000000006, 6.3553320000000895], [103.92740800000007, 6.355531000000042], [103.92751600000014, 6.3557210000001305], [103.92762499999992, 6.355920999999967], [103.92773299999999, 6.356119999999919], [103.92784100000006, 6.356319000000042], [103.92795799999993, 6.356517999999994], [103.928066, 6.356718000000058], [103.9281830000001, 6.356916999999953], [103.92829099999994, 6.357116000000076], [103.92840800000005, 6.357315000000028], [103.92851600000012, 6.357513999999981], [103.92863300000005, 6.357714000000044], [103.92874999999992, 6.3579129999999395], [103.92886800000008, 6.358112000000062], [103.92898500000001, 6.358311000000015], [103.92909300000008, 6.358501000000103], [103.92920999999996, 6.358700999999996], [103.92932700000006, 6.358900000000119], [103.92944399999999, 6.359099000000015], [103.92956100000009, 6.359288999999933], [103.92967799999997, 6.359479000000022], [103.92979599999995, 6.359679000000085], [103.92990400000002, 6.359869000000003], [103.93002100000012, 6.360059000000092], [103.930138, 6.360248999999953], [103.9302550000001, 6.360439000000042], [103.93037200000003, 6.3606300000000715], [103.93048900000014, 6.360829000000024], [103.93060600000001, 6.3610190000001126], [103.93071400000008, 6.361209000000031], [103.93083200000007, 6.361407999999926], [103.930949, 6.361599000000126], [103.93106600000004, 6.3617980000000784], [103.93118299999998, 6.361997000000031], [103.93129100000004, 6.3621870000001195], [103.93140799999992, 6.362386000000072], [103.93152500000002, 6.3625860000000785], [103.93164200000012, 6.362785000000031], [103.93176000000011, 6.3629750000001195], [103.93187700000004, 6.363174000000072], [103.93200299999995, 6.36336399999999], [103.93212000000005, 6.363563999999997], [103.93223699999999, 6.363754000000085], [103.93236300000007, 6.363944000000004], [103.93248, 6.3641430000001264], [103.9325970000001, 6.364333000000045], [103.93271500000009, 6.364524000000017], [103.93283200000002, 6.364714000000106], [103.93294900000006, 6.364904000000024], [103.93305700000013, 6.365094000000113], [103.93316500000003, 6.365293000000065], [103.93328200000008, 6.365493000000072], [103.93338999999997, 6.365692000000024], [103.93349800000004, 6.365890999999976], [103.93360600000011, 6.366090000000099], [103.93371399999995, 6.366289000000052], [103.93383199999994, 6.366498000000092], [103.93394, 6.366697000000045], [103.93405700000011, 6.366895999999997], [103.93416499999995, 6.367086000000086], [103.93428200000005, 6.367286000000092], [103.93439899999998, 6.367485000000045], [103.93451600000009, 6.367675000000133], [103.93462399999993, 6.367865000000052], [103.93474100000003, 6.368064000000004], [103.93485900000002, 6.368254000000093], [103.93496700000009, 6.368454000000099], [103.93507499999993, 6.368653000000052], [103.93519200000003, 6.368861000000038], [103.9353000000001, 6.36905999999999], [103.935408, 6.369269000000031], [103.935516, 6.369477000000018], [103.93562400000008, 6.3696760000001404], [103.93573199999997, 6.369884000000127], [103.93584900000002, 6.370083999999963], [103.93595700000009, 6.370283000000086], [103.93607500000007, 6.370482000000038], [103.936192, 6.370672000000127], [103.93630000000007, 6.370871000000079], [103.93641699999995, 6.371062000000052], [103.93653400000005, 6.37125199999997], [103.93664200000012, 6.371442000000059], [103.93674999999996, 6.371641000000011], [103.93686700000006, 6.3718310000001], [103.93697500000013, 6.372021000000018], [103.93708300000003, 6.372221000000025], [103.93718300000012, 6.372419999999977], [103.93729099999996, 6.3726190000001], [103.93739900000003, 6.372818000000052], [103.9375070000001, 6.373017000000004], [103.937615, 6.373217000000011], [103.937723, 6.3734249999999975], [103.93783100000007, 6.37362400000012], [103.937948, 6.373823000000073], [103.93806500000005, 6.374023000000136], [103.93817300000012, 6.374222000000032], [103.93829000000005, 6.37441199999995], [103.93840800000004, 6.374611000000073], [103.93852500000014, 6.374800999999991], [103.93863299999998, 6.375001000000054], [103.93875000000008, 6.375190999999916], [103.93886700000002, 6.375381000000004], [103.93898400000006, 6.375570999999923], [103.939101, 6.375761000000011], [103.9392180000001, 6.3759510000001], [103.93933600000008, 6.376142000000129], [103.93945300000001, 6.376332000000048], [103.93957000000006, 6.376522000000136], [103.93968699999999, 6.376721000000032], [103.9398040000001, 6.37691099999995], [103.93993, 6.377101999999979], [103.9400470000001, 6.377292000000068], [103.94016500000009, 6.377481999999986], [103.94028200000002, 6.377672000000075], [103.94040799999993, 6.3778709999999705], [103.94052500000004, 6.378062], [103.94064200000014, 6.378252000000089], [103.94075900000007, 6.378442000000007], [103.94087599999995, 6.37864100000013], [103.94099399999993, 6.378831000000048], [103.94111100000003, 6.3790310000000545], [103.9412190000001, 6.379230000000007], [103.94133599999998, 6.37942900000013], [103.94145300000008, 6.379628000000082], [103.94156099999998, 6.379818], [103.94166900000005, 6.380018000000007], [103.94177700000006, 6.38021700000013], [103.94188500000013, 6.380416000000082], [103.94199300000002, 6.380606], [103.94210199999998, 6.380805000000123], [103.94220100000001, 6.38100500000013], [103.94230900000002, 6.381195000000048], [103.94241700000009, 6.381394], [103.94252499999999, 6.381593000000123], [103.942633, 6.381792000000075], [103.94274100000007, 6.381991000000028], [103.942858, 6.382191000000034], [103.9429750000001, 6.382381000000123], [103.94308299999994, 6.382580000000075], [103.94320099999993, 6.382779000000028], [103.94331800000003, 6.382979000000034], [103.94343500000014, 6.383169000000123], [103.94355200000001, 6.383359000000041], [103.94366900000011, 6.383557999999994], [103.94378600000005, 6.383748000000082], [103.94390299999992, 6.383938000000001], [103.94402000000002, 6.384128999999973], [103.94413800000001, 6.384328000000096], [103.94425500000011, 6.384518000000014], [103.94437200000004, 6.384717000000137], [103.94448899999992, 6.384907000000055], [103.94459699999999, 6.385107000000062], [103.94471400000009, 6.38529699999998], [103.94483099999997, 6.385496000000103], [103.94493900000003, 6.385695000000055], [103.94505700000002, 6.385895000000062], [103.94516500000009, 6.38608499999998], [103.94527299999999, 6.386284000000103], [103.94539000000003, 6.386483000000055], [103.9454980000001, 6.3866820000000075], [103.94561500000003, 6.386882000000014], [103.9457230000001, 6.387072000000103], [103.94583999999998, 6.387271000000055], [103.94595700000008, 6.3874700000000075], [103.94607500000006, 6.387660000000096], [103.946192, 6.3878500000000145], [103.94631800000008, 6.388050000000021], [103.94643500000001, 6.38824000000011], [103.94655200000011, 6.388430000000028], [103.94666899999999, 6.388620000000117], [103.94678600000009, 6.388810000000035], [103.94690400000007, 6.3890010000000075], [103.947021, 6.389190999999926], [103.94713800000011, 6.389381000000014], [103.94725499999998, 6.389580000000137], [103.94736300000005, 6.38977900000009], [103.94747999999998, 6.389978999999926], [103.947588, 6.390169000000014], [103.9477050000001, 6.390367999999967], [103.94781400000005, 6.39056700000009], [103.94793099999998, 6.390766000000042], [103.94803900000005, 6.390957000000071], [103.94814700000006, 6.391155999999967], [103.94825500000013, 6.3913460000000555], [103.94836300000003, 6.391545000000008], [103.94846200000006, 6.391744000000131], [103.94857000000007, 6.391944000000024], [103.948687, 6.392134000000112], [103.94879500000008, 6.392342000000042], [103.94890400000003, 6.392540999999994], [103.94902100000013, 6.392740000000117], [103.94912899999997, 6.39294000000001], [103.94924600000007, 6.393139000000133], [103.949363, 6.393328999999994], [103.94948000000005, 6.393527999999947], [103.94959699999998, 6.393718000000035], [103.94971400000009, 6.393909000000065], [103.94982300000004, 6.394090000000119], [103.94994000000014, 6.3942800000000375], [103.95005700000002, 6.394470000000126], [103.95016500000008, 6.394659999999988], [103.95028200000002, 6.394850000000076], [103.95039900000006, 6.39505000000014], [103.95050700000013, 6.395240000000058], [103.95062400000006, 6.39543900000001], [103.95074200000005, 6.39564699999994], [103.95085000000012, 6.395846000000063], [103.95096699999999, 6.396046000000126], [103.95107500000006, 6.396245000000079], [103.95119199999999, 6.396444000000031], [103.95130900000004, 6.39663400000012], [103.9514170000001, 6.396834000000126], [103.951525, 6.3970240000000445], [103.95164200000005, 6.397222999999997], [103.95176000000009, 6.3974130000000855], [103.95186799999993, 6.397612000000038], [103.95198500000004, 6.3978020000001266], [103.95210200000014, 6.398002000000133], [103.95221900000001, 6.398192000000051], [103.95233600000012, 6.398391000000004], [103.95245300000005, 6.398590000000127], [103.95257100000003, 6.398780000000045], [103.95268800000014, 6.398980000000051], [103.95281400000005, 6.39917000000014], [103.95293099999998, 6.399360000000058], [103.95304800000008, 6.3995499999999765], [103.95316499999996, 6.399740000000065], [103.95328200000006, 6.399940000000072], [103.95340000000004, 6.40012999999999], [103.95350800000011, 6.400320000000079], [103.95362499999999, 6.400519000000031], [103.95374200000009, 6.4007179999999835], [103.95384999999999, 6.40091799999999], [103.95396700000009, 6.401108000000079], [103.95407499999993, 6.401307000000031], [103.95419200000003, 6.4015059999999835], [103.95430099999999, 6.401705000000106], [103.95441800000009, 6.401905000000113], [103.95453499999996, 6.402095000000031], [103.95465200000007, 6.40228500000012], [103.95476000000014, 6.402484000000072], [103.95487700000007, 6.40267399999999], [103.95499399999994, 6.4028650000001335], [103.95511100000004, 6.403055000000052], [103.95522900000003, 6.40324500000014], [103.95534600000013, 6.403444000000093], [103.95546300000001, 6.403634000000011], [103.95558000000011, 6.403834000000018], [103.95569700000004, 6.404024000000106], [103.95581399999992, 6.404223000000059], [103.95593100000002, 6.404412999999977], [103.95604900000001, 6.4046030000000655], [103.95616600000011, 6.404792999999984], [103.95628300000004, 6.404983999999956], [103.95639999999992, 6.405174000000045], [103.95652600000005, 6.405364000000134], [103.95664299999999, 6.405554000000052], [103.95676099999997, 6.405744000000141], [103.95687800000007, 6.405943999999977], [103.95699499999995, 6.4061340000000655], [103.95711200000005, 6.406333000000018], [103.95722899999998, 6.4065230000001065], [103.957337, 6.406722000000059], [103.9574540000001, 6.406922000000122], [103.957562, 6.407121000000018], [103.95767999999998, 6.40731999999997], [103.95778800000005, 6.407510000000059], [103.95789600000006, 6.407709000000011], [103.95800400000013, 6.407909000000075], [103.95811200000003, 6.408098999999936], [103.95822000000004, 6.408298000000059], [103.95832800000011, 6.408487999999977], [103.958436, 6.4086870000001], [103.95854400000007, 6.408877000000018], [103.95866200000006, 6.409077000000082], [103.95877000000007, 6.409275999999977], [103.958887, 6.409466000000066], [103.9590040000001, 6.409665000000018], [103.95911199999995, 6.409865000000082], [103.95922900000005, 6.410055], [103.95933700000012, 6.410254000000123], [103.95945400000005, 6.410443999999984], [103.959563, 6.410642999999936], [103.95967100000001, 6.410842000000059], [103.95978800000012, 6.411042000000123], [103.95989600000001, 6.411232000000041], [103.96001300000012, 6.411430999999936], [103.96012099999996, 6.411630000000059], [103.96023800000006, 6.411830000000123], [103.96035499999999, 6.412020000000041], [103.96047299999998, 6.412218999999993], [103.96059900000006, 6.412409000000082], [103.96071599999999, 6.412598999999943], [103.96084200000013, 6.412779999999998], [103.960959, 6.412971000000027], [103.96108500000014, 6.413161000000116], [103.96120299999995, 6.413342], [103.96132900000009, 6.413532000000089], [103.96144600000002, 6.413722000000007], [103.96156300000007, 6.413912000000096], [103.96168, 6.414112000000102], [103.96178800000007, 6.414302000000021], [103.96190600000006, 6.414492000000109], [103.96201400000012, 6.414691000000062], [103.96212199999997, 6.414890000000014], [103.96223900000007, 6.415090000000021], [103.96234700000014, 6.415280000000109], [103.96246400000001, 6.415479000000062], [103.96257200000008, 6.415678000000014], [103.96268900000001, 6.415868000000103], [103.96279700000002, 6.416068000000109], [103.96291500000007, 6.4162580000000276], [103.96302300000008, 6.41645699999998], [103.96314000000001, 6.416647000000069], [103.96324800000008, 6.416846000000021], [103.96334700000006, 6.417046000000028], [103.96345500000012, 6.41724499999998], [103.96356300000002, 6.417444000000103], [103.96366200000006, 6.417643000000055], [103.96377000000007, 6.417842000000007], [103.9638690000001, 6.418042000000014], [103.96397800000005, 6.418232000000103], [103.96407700000009, 6.418431000000055], [103.96418499999999, 6.418630000000007], [103.964293, 6.41882900000013], [103.96440100000007, 6.419019000000048], [103.96450900000013, 6.419219000000055], [103.96461699999998, 6.419418000000007], [103.96473400000008, 6.41961700000013], [103.96484199999998, 6.4198070000000484], [103.96495900000008, 6.420006000000001], [103.96507700000006, 6.420206000000007], [103.96519399999994, 6.42040500000013], [103.96531100000004, 6.4205950000000485], [103.96542799999997, 6.420794000000001], [103.96554500000002, 6.4209840000000895], [103.96566200000012, 6.421184000000096], [103.96577900000005, 6.4213830000000485], [103.965888, 6.421573000000137], [103.96600500000011, 6.4217720000000895], [103.96611299999995, 6.421972000000096], [103.96622100000002, 6.4221710000000485], [103.96632000000005, 6.422370000000001], [103.96642800000012, 6.422569000000124], [103.96652699999993, 6.422768000000076], [103.966635, 6.422967000000028], [103.96673400000003, 6.423167000000035], [103.96684200000004, 6.423365999999987], [103.96696000000009, 6.423556000000076], [103.96706799999993, 6.423755000000028], [103.96718500000003, 6.423945000000117], [103.96730200000013, 6.4241360000000896], [103.96742800000004, 6.424326000000008], [103.96754499999997, 6.4245160000000965], [103.967672, 6.424706000000015], [103.96779800000013, 6.424896000000103], [103.96792400000004, 6.425087000000076], [103.96805, 6.425276999999994], [103.96816700000011, 6.425467000000083], [103.96829400000013, 6.425657000000001], [103.9684200000001, 6.425838000000056], [103.968546, 6.426027999999974]]], + "type": "multilinestring" + } + ], + "type": "geometrycollection" +} \ No newline at end of file diff --git a/indexer-core/src/test/resources/geo/decimator/geometrycollection_multipoint.json b/indexer-core/src/test/resources/geo/decimator/geometrycollection_multipoint.json new file mode 100644 index 0000000000000000000000000000000000000000..c3c886dbbea97558117bcd4cf15375abe70c270d --- /dev/null +++ b/indexer-core/src/test/resources/geo/decimator/geometrycollection_multipoint.json @@ -0,0 +1,8 @@ +{ + "geometries": [{ + "coordinates": [[104.095752, 6.3154210000001285], [104.0958690000001, 6.315621000000135], [104.09598599999998, 6.315811000000053], [104.09610300000008, 6.316001000000142], [104.09622000000002, 6.31619100000006], [104.096338, 6.3163809999999785], [104.09645500000005, 6.316571000000067], [104.09657199999998, 6.316769999999963], [104.09668900000008, 6.316960999999992], [104.09680599999996, 6.317151000000081], [104.096924, 6.317350000000033], [104.09704100000005, 6.317540000000122], [104.09715799999998, 6.31773000000004], [104.09727500000008, 6.3179289999999355], [104.09739199999996, 6.318120000000135], [104.09750900000006, 6.318319000000088], [104.09762700000005, 6.318509000000006], [104.09774399999998, 6.318699000000095], [104.09786100000008, 6.318898000000047], [104.09797799999996, 6.319088000000136], [104.09809500000006, 6.319287999999972], [104.09821300000004, 6.3194780000000605], [104.09832999999998, 6.319667999999979], [104.09844700000002, 6.319867000000102], [104.09856400000012, 6.32005700000002], [104.09868100000006, 6.3202470000001085], [104.09879900000004, 6.320447000000115], [104.09891599999997, 6.320637000000033], [104.09903300000002, 6.320835999999986], [104.09915000000012, 6.321026000000074], [104.09926700000005, 6.321225000000027], [104.09938399999993, 6.321415999999999], [104.09950199999992, 6.321615000000122], [104.09961900000002, 6.32180500000004], [104.09973600000012, 6.322003999999993], [104.09985300000005, 6.322194000000081], [104.09996999999993, 6.322393000000034], [104.10007900000005, 6.32259300000004], [104.10019599999998, 6.322783000000129], [104.10031300000009, 6.322982000000081], [104.10042099999993, 6.323181000000034], [104.10053800000003, 6.323371000000122], [104.10065500000013, 6.323570000000075], [104.10077300000012, 6.323761000000047], [104.10088100000002, 6.32396], [104.10099800000006, 6.324150000000088], [104.101115, 6.324349000000041], [104.1012320000001, 6.324539000000129], [104.10135000000008, 6.324729000000048], [104.10145799999998, 6.324929000000054], [104.10157500000003, 6.325118999999972], [104.10169200000013, 6.325318000000095], [104.10180900000006, 6.3255080000000135], [104.10192599999993, 6.325707000000136], [104.10204399999992, 6.3258970000000545], [104.10216100000002, 6.326097000000061], [104.10226900000009, 6.326286999999979], [104.10238600000002, 6.326486000000102], [104.10250300000007, 6.3266850000000545], [104.10262, 6.326874999999973], [104.10272900000012, 6.327074999999979], [104.10284600000006, 6.327274000000102], [104.10296299999993, 6.32746400000002], [104.103071, 6.327662999999973], [104.1031880000001, 6.3278530000000615], [104.10330600000009, 6.328052000000014], [104.10341399999999, 6.32825200000002], [104.10353100000003, 6.328442000000109], [104.10364800000013, 6.3286410000000615], [104.10376500000007, 6.32883099999998], [104.10387300000014, 6.3290300000001025], [104.10399100000012, 6.329220000000021], [104.104108, 6.329420000000027], [104.1042250000001, 6.329610000000116], [104.10434200000003, 6.329809000000068], [104.10445900000008, 6.329998999999987], [104.10456699999997, 6.3301980000001095], [104.10468499999996, 6.330388000000028], [104.10480200000006, 6.330588000000034], [104.104919, 6.330778000000123], [104.105027, 6.330977000000075], [104.10514400000011, 6.331176000000028], [104.1052620000001, 6.331366000000116], [104.10537, 6.331565000000069], [104.1054870000001, 6.331756000000041], [104.10559499999994, 6.331954999999994], [104.10571200000004, 6.332154000000116], [104.10582000000011, 6.332344000000035], [104.1059380000001, 6.332542999999987], [104.10605499999997, 6.33274200000011], [104.10616300000004, 6.332933000000082], [104.10628000000014, 6.333132000000035], [104.10639700000007, 6.333330999999987], [104.10650500000008, 6.333521000000076], [104.10662300000007, 6.333720000000028], [104.10674, 6.333920000000035], [104.10684800000007, 6.334110000000123], [104.10696499999995, 6.334309000000076], [104.10708200000005, 6.334508000000028], [104.10720000000003, 6.334698000000117], [104.10731700000014, 6.334897000000069], [104.10742500000003, 6.335088000000042], [104.10754200000008, 6.335286999999994], [104.10765900000001, 6.335477000000083], [104.10777600000011, 6.335676000000035], [104.1078940000001, 6.335866000000124], [104.10801100000003, 6.336065000000076], [104.10812800000008, 6.3362560000000485], [104.10824500000001, 6.336455000000001], [104.10836200000011, 6.33664500000009], [104.10847100000007, 6.336844000000042], [104.10858799999994, 6.337034000000131], [104.10870500000004, 6.337233000000083], [104.10882199999998, 6.3374240000000555], [104.10893900000008, 6.337623000000008], [104.10905700000006, 6.3378130000000965], [104.10916500000008, 6.338012000000049], [104.10928200000001, 6.338202000000138], [104.10939900000011, 6.33840100000009], [104.10951599999999, 6.3386010000000965], [104.10962400000005, 6.338791000000015], [104.10974200000004, 6.338990000000138], [104.10985899999997, 6.33918900000009], [104.10996700000004, 6.339379000000008], [104.11008399999992, 6.339579000000015], [104.11019199999998, 6.3397690000001035], [104.11030999999997, 6.339968000000056], [104.11041800000004, 6.340157999999974], [104.11053500000014, 6.340357000000097], [104.11064299999998, 6.340547000000015], [104.11076000000008, 6.340746000000138], [104.11086799999998, 6.340945999999974], [104.11098600000014, 6.341136000000063], [104.11109400000004, 6.341335000000015], [104.11121100000008, 6.341534000000138], [104.11131899999998, 6.341724000000056], [104.11143600000008, 6.341924000000063], [104.11154399999992, 6.342123000000015], [104.11166200000014, 6.342322000000138], [104.11176999999998, 6.342512000000056], [104.11188700000008, 6.342711000000008], [104.11200400000001, 6.342910000000131], [104.11211200000002, 6.343110000000138], [104.11222900000013, 6.343300000000056], [104.11234700000011, 6.343499000000008], [104.11246400000005, 6.343689000000097], [104.11257200000011, 6.3438880000000495], [104.11268899999999, 6.344078000000138], [104.11280600000009, 6.344269000000111], [104.11292400000008, 6.344459000000029], [104.11303199999998, 6.344657999999981], [104.11314900000002, 6.34484800000007], [104.11326600000012, 6.345037999999988], [104.11338300000006, 6.345228000000077], [104.11350100000004, 6.345428000000084], [104.11360900000011, 6.345618000000002], [104.11372599999999, 6.345817000000125], [104.11384300000009, 6.346007000000043], [104.11395099999999, 6.346205999999995], [104.11406800000003, 6.346396000000084], [104.11417700000004, 6.3465960000000905], [104.11429399999992, 6.346795000000043], [104.11440199999998, 6.346993999999995], [104.11451900000009, 6.347193000000118], [104.11462699999993, 6.34739200000007], [104.11474500000014, 6.347581999999932], [104.11485299999998, 6.347781999999995], [104.11497000000008, 6.347981000000118], [104.11507799999998, 6.348171000000036], [104.115186, 6.3483699999999885], [104.1153030000001, 6.348560000000077], [104.11541200000005, 6.348749999999939], [104.11552899999998, 6.348950000000002], [104.11563700000005, 6.349140000000091], [104.11575399999992, 6.349330000000009], [104.11587100000003, 6.349520000000098], [104.1159790000001, 6.349710000000016], [104.11609700000008, 6.349900000000105], [104.11621399999996, 6.350099], [104.11632200000003, 6.3502900000000295], [104.11643900000013, 6.350480000000118], [104.11655600000006, 6.350679000000071], [104.11667400000005, 6.350868999999989], [104.11679099999992, 6.351068000000112], [104.11689899999999, 6.351267000000007], [104.11701600000009, 6.3514580000000365], [104.11713299999997, 6.351656999999989], [104.11725100000001, 6.351856000000112], [104.11736800000006, 6.35204600000003], [104.11747600000012, 6.352244999999925], [104.11759300000006, 6.352444999999989], [104.11770999999993, 6.352644000000112], [104.117818, 6.35283400000003], [104.11793599999999, 6.353032999999982], [104.11804400000005, 6.353223000000071], [104.11816099999999, 6.353421999999966], [104.118269, 6.353612000000055], [104.1183860000001, 6.353812000000119], [104.11849500000005, 6.354002000000037], [104.11861199999998, 6.3541920000001255], [104.11872000000005, 6.354391000000078], [104.11883699999993, 6.354580999999939], [104.11895400000003, 6.354780000000062], [104.1190620000001, 6.354971000000091], [104.11918000000009, 6.355170000000044], [104.11928799999993, 6.3553600000001325], [104.11940500000003, 6.355559000000085], [104.1195130000001, 6.355748999999946], [104.11963000000003, 6.355948000000069], [104.11973899999998, 6.3561480000001325], [104.11985600000003, 6.356347000000085], [104.1199640000001, 6.356546000000037], [104.12008100000003, 6.356744999999933], [104.1201890000001, 6.356935000000021], [104.12030599999997, 6.357135000000085], [104.12041499999992, 6.357334000000037], [104.12053200000003, 6.357532999999989], [104.1206400000001, 6.357723000000078], [104.12075699999997, 6.357921999999974], [104.12086500000004, 6.358112000000062], [104.12098300000002, 6.358312000000126], [104.12109100000009, 6.358502000000044], [104.12120800000002, 6.358692000000133], [104.12132500000007, 6.358891000000085], [104.121442, 6.3590809999999465], [104.12155999999999, 6.359271000000035], [104.12167700000009, 6.359460999999953], [104.12179400000002, 6.359651999999983], [104.12191100000007, 6.359851000000106], [104.122028, 6.360041000000024], [104.12215500000002, 6.3602310000001125], [104.12227200000012, 6.360420999999974], [104.122389, 6.360619999999926], [104.1225060000001, 6.360811000000126], [104.12263200000007, 6.361010000000078], [104.12275000000005, 6.361199999999997], [104.12286699999999, 6.3613990000001195], [104.12298400000003, 6.361588999999981], [104.12310100000013, 6.361789000000044], [104.12321800000007, 6.361987999999997], [104.12333600000005, 6.362178000000085], [104.12345299999993, 6.362368000000004], [104.123561, 6.362567000000126], [104.1236780000001, 6.362756999999988], [104.12379500000003, 6.3629470000000765], [104.12391300000002, 6.36314700000014], [104.12403000000006, 6.363337000000058], [104.12413800000013, 6.363526999999976], [104.12425500000006, 6.363717000000065], [104.12437199999994, 6.363915999999961], [104.12448999999998, 6.364106000000049], [104.12459799999999, 6.364297000000079], [104.1247150000001, 6.364496000000031], [104.12483200000003, 6.36468600000012], [104.12494900000007, 6.364885000000072], [104.12506700000012, 6.365074999999933], [104.12517499999996, 6.365274000000056], [104.12529200000006, 6.36547400000012], [104.12540899999999, 6.365673000000072], [104.12552600000004, 6.36586299999999], [104.12563499999999, 6.366062000000113], [104.12575200000009, 6.366261000000009], [104.12585999999999, 6.366459999999961], [104.12597700000009, 6.36665099999999], [104.12608499999993, 6.366850000000113], [104.12620299999992, 6.367040000000031], [104.12631099999999, 6.367238999999927], [104.12642800000009, 6.3674290000000155], [104.12653599999993, 6.367627999999968], [104.12665300000003, 6.367818999999997], [104.1267610000001, 6.368009000000086], [104.12687900000009, 6.368208000000038], [104.12699600000002, 6.368398000000127], [104.12710400000003, 6.3685970000000225], [104.12722100000013, 6.368786999999941], [104.12733800000007, 6.368987000000004], [104.12745600000005, 6.369177000000093], [104.12757299999998, 6.369376000000045], [104.12769000000003, 6.369566000000134], [104.12780700000013, 6.369765000000029], [104.12792400000006, 6.369963999999982], [104.12804200000005, 6.370155000000011], [104.12815899999993, 6.370354000000134], [104.12827600000003, 6.370544000000052], [104.12839300000013, 6.370742999999948], [104.12851000000006, 6.370933000000036], [104.12862800000005, 6.371122999999955], [104.12874499999992, 6.371323000000018], [104.12885299999999, 6.371513000000107], [104.1289700000001, 6.371703000000025], [104.12908699999997, 6.3719019999999205], [104.12920500000001, 6.372092000000009], [104.12932200000006, 6.372281999999927], [104.12943899999999, 6.372473000000127], [104.1295560000001, 6.37267200000008], [104.12966399999993, 6.372861999999998], [104.12978199999992, 6.373061000000121], [104.12989900000002, 6.373260000000016], [104.13000700000009, 6.3734589999999685], [104.13012400000002, 6.373649999999998], [104.13024100000007, 6.373849000000121], [104.13035000000002, 6.374048000000073], [104.13046700000012, 6.3742469999999685], [104.13057500000002, 6.374445999999921], [104.13069200000012, 6.374645000000044], [104.130809, 6.374836000000073], [104.13091799999995, 6.375035000000025], [104.13103500000005, 6.375233999999921], [104.13114300000012, 6.3754240000000095], [104.13126, 6.375622999999962], [104.1313770000001, 6.375813000000051], [104.13148600000005, 6.376013000000114], [104.13160299999998, 6.376203000000032], [104.13172000000009, 6.376393000000121], [104.13183699999996, 6.3765920000000165], [104.13194500000003, 6.376781999999935], [104.13206300000002, 6.3769810000000575], [104.13218000000012, 6.377172000000087], [104.13229700000005, 6.377371000000039], [104.13240500000006, 6.377569999999935], [104.132522, 6.377760000000023], [104.13263999999998, 6.377958999999976], [104.13275700000008, 6.378159000000039], [104.13286499999992, 6.3783579999999915], [104.13298200000003, 6.37854800000008], [104.13309900000013, 6.378746999999976], [104.13321700000012, 6.378945999999928], [104.13333400000005, 6.379136000000017], [104.13344200000006, 6.37933600000008], [104.13355899999999, 6.3795259999999985], [104.1336760000001, 6.379725000000121], [104.13379400000008, 6.379914999999983], [104.13391100000001, 6.380105000000071], [104.13402800000006, 6.38029499999999], [104.13413600000013, 6.3804940000001125], [104.13425300000006, 6.380685000000142], [104.13437100000004, 6.38087500000006], [104.13448799999992, 6.381064999999921], [104.13460500000002, 6.38125500000001], [104.13472200000012, 6.381453999999962], [104.13483900000006, 6.381644000000051], [104.13495700000004, 6.381844000000115], [104.13507399999992, 6.382034000000033], [104.13518199999999, 6.382232999999928], [104.13529900000009, 6.382423000000017], [104.13541599999996, 6.382621999999969], [104.135534, 6.382812000000058], [104.13564200000002, 6.383012000000122], [104.13575900000012, 6.38320200000004], [104.13587600000005, 6.383400999999935], [104.13599299999993, 6.383600000000058], [104.13610200000011, 6.383789999999976], [104.13621899999998, 6.383989000000099], [104.13633600000009, 6.3841800000001285], [104.13645300000002, 6.384379000000081], [104.13656100000003, 6.384568999999942], [104.13667900000002, 6.384768000000065], [104.13679600000012, 6.384957999999983], [104.13691300000005, 6.385157000000106], [104.13702100000012, 6.3853480000001355], [104.137138, 6.385547000000088], [104.13725599999998, 6.385736999999949], [104.13737300000008, 6.385936000000072], [104.13748099999998, 6.386135000000024], [104.13759800000003, 6.386333999999977], [104.13771500000013, 6.386525000000006], [104.13782400000008, 6.386724000000129], [104.13794100000001, 6.386923000000024], [104.13805800000011, 6.387121999999977], [104.13816599999996, 6.387312000000065], [104.13828300000006, 6.387511000000018], [104.13840100000004, 6.387711000000081], [104.13850900000011, 6.3879009999999425], [104.13862600000004, 6.388100000000065], [104.13874299999992, 6.388289999999984], [104.13886000000002, 6.388489000000106], [104.13896899999997, 6.388679000000025], [104.13908600000008, 6.388879000000088], [104.13920299999995, 6.3890689999999495], [104.13932000000005, 6.389259000000038], [104.13942800000012, 6.3894579999999905], [104.13954600000011, 6.389648000000079], [104.13966300000004, 6.3898379999999975], [104.13977100000005, 6.390038000000061], [104.13988799999998, 6.390227999999922], [104.14000599999997, 6.390418000000011], [104.14011400000004, 6.390616999999963], [104.14023100000014, 6.390807000000052], [104.14033899999998, 6.391006000000004], [104.14045600000009, 6.391196000000093], [104.14057400000007, 6.391395999999929], [104.14068200000014, 6.391595000000052], [104.14079900000007, 6.39178499999997], [104.14091599999995, 6.391984000000093], [104.14103300000005, 6.392174000000011], [104.141142, 6.392374000000075], [104.1412590000001, 6.39257299999997], [104.14137599999998, 6.392763000000059], [104.14149300000008, 6.392962000000011], [104.14160099999998, 6.393161000000134], [104.14171900000014, 6.393351000000052], [104.14183600000007, 6.393551000000116], [104.14195299999994, 6.393740999999977], [104.14206100000001, 6.39393999999993], [104.14217800000011, 6.394130000000018], [104.1422960000001, 6.394329000000141], [104.142404, 6.394519000000059], [104.14252100000004, 6.394719000000123], [104.14262900000011, 6.394908999999984], [104.14274600000005, 6.3951079999999365], [104.142855, 6.395298000000025], [104.1429720000001, 6.395496999999978], [104.14308899999997, 6.395687000000066], [104.14319700000004, 6.395886000000019], [104.14331399999998, 6.396076999999991], [104.1434230000001, 6.3962759999999435], [104.14353999999997, 6.396475000000066], [104.14364800000004, 6.3966649999999845], [104.14376499999997, 6.396864000000107], [104.14387300000004, 6.3970540000000256], [104.14399100000003, 6.397254000000032], [104.14409900000004, 6.39744399999995], [104.14421599999997, 6.397643000000073], [104.14432400000004, 6.397832999999991], [104.14444099999992, 6.398032000000114], [104.1445500000001, 6.3982220000000325], [104.14466699999997, 6.398413000000005], [104.14477500000004, 6.398611999999957], [104.14489200000014, 6.398802000000046], [104.14499999999998, 6.399000999999998], [104.14511800000002, 6.399191000000087], [104.14523500000007, 6.399390000000039], [104.14534300000014, 6.399581000000012], [104.14546000000007, 6.399779999999964], [104.14557699999995, 6.399970000000053], [104.14568600000013, 6.400169000000005], [104.145803, 6.400368000000128], [104.1459200000001, 6.4005670000000805], [104.14603700000004, 6.400758000000053], [104.14615400000008, 6.400957000000005], [104.14627200000007, 6.401156000000128], [104.146389, 6.4013550000000805], [104.1465060000001, 6.401554000000033], [104.14661399999994, 6.401744000000122], [104.14673100000005, 6.401943999999958], [104.14684900000003, 6.4021430000000805], [104.14696600000013, 6.402332999999999], [104.14707400000003, 6.402532000000122], [104.14719100000008, 6.40272200000004], [104.14730800000001, 6.402920999999992], [104.14741699999996, 6.403111999999965], [104.14753400000006, 6.4033110000000875], [104.14764200000013, 6.403501000000006], [104.14775900000001, 6.4037000000001285], [104.14786700000008, 6.403899000000081], [104.14798500000006, 6.404098000000033], [104.14809300000013, 6.404289000000006], [104.14821000000006, 6.4044880000001285], [104.14831800000007, 6.404687000000081], [104.148435, 6.404886000000033], [104.14855299999999, 6.4050849999999855], [104.1486700000001, 6.405284999999992], [104.14877799999994, 6.405475000000081], [104.14889500000004, 6.405674000000033], [104.14901300000002, 6.4058729999999855], [104.14913000000013, 6.406072000000108], [104.14924700000006, 6.4062620000000265], [104.14936399999993, 6.406462000000033], [104.14948100000004, 6.406652000000122], [104.14958999999999, 6.40684200000004], [104.14970700000009, 6.407040999999992], [104.14982400000002, 6.407231000000081], [104.14994100000007, 6.407420999999999], [104.150058, 6.407620000000122], [104.15017599999999, 6.407811000000095], [104.15029300000009, 6.408001000000013], [104.15040099999993, 6.408191000000102], [104.15051800000003, 6.408390000000054], [104.15063600000002, 6.408579999999972], [104.15075300000012, 6.408770000000061], [104.15087000000005, 6.408970000000068], [104.15098699999993, 6.409159999999986], [104.15110400000003, 6.409359000000109], [104.15122200000002, 6.409549000000027], [104.15133900000012, 6.409747999999979], [104.15145600000005, 6.409938000000068], [104.15157299999993, 6.41012900000004], [104.15169100000008, 6.410327999999993], [104.15180800000002, 6.410518000000081], [104.15192500000012, 6.410708], [104.15205100000003, 6.4109070000001225], [104.15216900000007, 6.411097000000041], [104.15228599999995, 6.411287000000129], [104.15240300000005, 6.411478000000102], [104.15251999999998, 6.41166800000002], [104.15263700000003, 6.4118669999999724], [104.15275500000001, 6.412057000000061], [104.15287200000012, 6.412246999999979], [104.15298900000005, 6.412437000000068], [104.15310599999992, 6.412628000000041], [104.15322400000014, 6.412826999999993], [104.15334100000001, 6.413017000000082], [104.15345800000011, 6.413207], [104.15357500000005, 6.413406000000123], [104.15369300000003, 6.413596000000041], [104.15381000000014, 6.413796000000048], [104.15392700000001, 6.413986000000136], [104.15404400000011, 6.414185000000089], [104.15416100000004, 6.414384000000041], [104.15427, 6.41457400000013], [104.15438700000004, 6.414773000000082], [104.15450399999997, 6.414973000000089], [104.15462100000008, 6.415163000000007], [104.15473799999995, 6.41536200000013], [104.154856, 6.415561000000082], [104.15497300000004, 6.415751], [104.155099, 6.415941000000089], [104.15521600000011, 6.416141000000096], [104.1553340000001, 6.416331000000014], [104.15545099999997, 6.4165210000001025], [104.15556800000007, 6.416720000000055], [104.155685, 6.416909999999973], [104.15581200000003, 6.417100000000062], [104.15592900000013, 6.41728999999998], [104.156046, 6.417481000000123], [104.1561630000001, 6.417680000000075], [104.15628100000009, 6.4178699999999935], [104.15639800000002, 6.418060000000082], [104.15651500000013, 6.418259000000035], [104.156632, 6.418449000000123], [104.15674000000007, 6.41864900000013], [104.15685800000006, 6.418839000000048], [104.15697499999999, 6.4190380000000005], [104.157083, 6.419228000000089], [104.15719100000007, 6.4194270000000415], [104.157308, 6.419625999999994], [104.15741700000012, 6.419817000000137], [104.15752500000002, 6.420016000000089], [104.15764200000007, 6.420206000000007], [104.15775000000014, 6.42040500000013], [104.15785800000003, 6.4205950000000485], [104.15796699999999, 6.420785000000137], [104.15808400000009, 6.4209840000000895], [104.15819199999993, 6.421175000000062], [104.15830900000003, 6.421374000000014], [104.1584170000001, 6.421564000000103], [104.15853500000009, 6.421763000000055], [104.15864299999998, 6.421952999999974], [104.15876000000003, 6.4221520000000965], [104.15887700000013, 6.422343000000069], [104.15898500000003, 6.422542000000021], [104.15910300000002, 6.422740999999974], [104.15922000000012, 6.422931000000062], [104.15932799999996, 6.423130000000015], [104.15944500000006, 6.4233290000001375], [104.15955400000001, 6.42352000000011], [104.15967100000012, 6.423719000000062], [104.15978799999999, 6.423918000000015], [104.15989600000006, 6.4241170000001375], [104.16000400000013, 6.424307000000056], [104.16012200000011, 6.424506000000008], [104.16023000000001, 6.424696999999981], [104.16034700000006, 6.424896000000103], [104.16045500000013, 6.425086000000022], [104.16057200000006, 6.425284999999974], [104.16068100000001, 6.425475000000063], [104.16079800000011, 6.425674000000015], [104.16090599999995, 6.4258649999999875], [104.16102300000006, 6.42606400000011], [104.16113999999999, 6.4262540000000286], [104.16124900000011, 6.426444000000117], [104.16136600000004, 6.42664300000007], [104.16148299999992, 6.426832999999988], [104.16160000000002, 6.427032000000111], [104.16170899999997, 6.427232000000117], [104.16182600000008, 6.4274220000000355], [104.16194299999995, 6.427620999999988], [104.16205100000002, 6.4278110000000765], [104.16216800000012, 6.428010000000029], [104.16228600000011, 6.428208999999981], [104.162394, 6.428400000000124], [104.16251100000005, 6.428599000000077], [104.16262799999998, 6.428798000000029], [104.16273699999994, 6.428988000000118], [104.16285400000004, 6.42918700000007], [104.1629620000001, 6.429386000000022], [104.16307899999998, 6.429576999999995], [104.16318700000005, 6.429776000000118], [104.16330500000004, 6.429966000000036], [104.16342200000014, 6.430164999999988], [104.16353000000004, 6.430355000000077], [104.16364700000008, 6.430544999999995], [104.16376400000001, 6.430745000000002], [104.163882, 6.43093500000009], [104.16399000000007, 6.431134000000043], [104.16410699999994, 6.4313240000001315], [104.16422400000005, 6.43151400000005], [104.16434200000003, 6.431713000000002], [104.1644500000001, 6.431903000000091], [104.16456700000003, 6.432103000000097], [104.16468400000008, 6.432293000000016], [104.16479199999998, 6.432492000000138], [104.16490999999996, 6.432691000000091], [104.16502700000007, 6.432881000000009], [104.16513500000013, 6.433080000000132], [104.16525200000001, 6.433280000000138], [104.16536000000008, 6.433479000000091], [104.16547800000006, 6.433678000000043], [104.16558600000013, 6.433876999999995], [104.16569400000003, 6.434067000000084], [104.16581100000008, 6.434267000000091], [104.16592000000003, 6.434466000000043], [104.16603700000013, 6.434664999999995], [104.16614500000003, 6.434855000000084], [104.16626200000013, 6.4350540000000365], [104.16636999999997, 6.435252999999932], [104.16648799999996, 6.435443000000021], [104.16660500000006, 6.435643000000084], [104.16671300000013, 6.4358420000000365], [104.16683, 6.436032000000125], [104.1669470000001, 6.4362310000000775], [104.16706499999992, 6.436420999999939], [104.16717299999999, 6.436620000000062], [104.1672900000001, 6.436811000000091], [104.16740699999997, 6.437010000000043], [104.16752499999996, 6.437200000000132], [104.16763300000002, 6.4373990000000845], [104.16775000000013, 6.43759799999998], [104.16786700000006, 6.437788000000069], [104.16797500000007, 6.437988000000132], [104.16809300000006, 6.43817800000005], [104.16820100000012, 6.438377000000003], [104.16831800000006, 6.4385760000001255], [104.16842600000012, 6.438765999999987], [104.16853399999997, 6.438964999999939], [104.16865199999995, 6.439156000000139], [104.16876000000002, 6.439346000000057], [104.16887700000012, 6.43954500000001], [104.16898499999996, 6.439735000000098], [104.169103, 6.439933999999994], [104.16922000000005, 6.440124000000083], [104.16932800000012, 6.4403239999999755], [104.16944500000005, 6.440514000000064], [104.16956199999993, 6.440713000000017], [104.16968000000014, 6.440903000000105], [104.16978799999998, 6.441102000000001], [104.16990500000009, 6.441291999999919], [104.17002200000002, 6.441491000000042], [104.17014, 6.441691000000105], [104.17025700000005, 6.4418810000000235], [104.17037399999998, 6.442079999999919], [104.17048200000005, 6.442279000000042], [104.17060000000004, 6.44246899999996], [104.17071700000014, 6.442668000000083], [104.17083400000001, 6.442859000000112], [104.17094200000008, 6.443058000000065], [104.17105900000001, 6.443247999999926], [104.171177, 6.443438000000015], [104.1712940000001, 6.443627999999933], [104.17141099999998, 6.443827000000056], [104.17151900000005, 6.444018000000085], [104.17163700000003, 6.444208000000003], [104.17175400000013, 6.444398000000092], [104.17187100000001, 6.444587999999953], [104.17198800000011, 6.444778000000042], [104.17210599999993, 6.444976999999994], [104.17223200000006, 6.445167000000083], [104.172349, 6.4453580000001125], [104.17246600000004, 6.445557000000065], [104.17258400000003, 6.445746999999926], [104.17270100000013, 6.445946000000049], [104.17281800000006, 6.446135999999967], [104.17293499999994, 6.44633500000009], [104.17305299999998, 6.446534999999983], [104.17317000000003, 6.446725000000072], [104.17328700000013, 6.446923999999967], [104.17340400000006, 6.447114000000056], [104.17352099999994, 6.447313000000008], [104.17363899999992, 6.447503000000097], [104.17375600000003, 6.44770299999999], [104.17387300000013, 6.447893000000079], [104.17398100000003, 6.44808299999994], [104.17409900000001, 6.448282000000063], [104.17421600000006, 6.448471999999981], [104.17433299999999, 6.448671000000104], [104.17445000000009, 6.448862000000133], [104.17455900000004, 6.449061000000086], [104.17467599999998, 6.449250999999947], [104.17479300000002, 6.44945000000007], [104.17491000000012, 6.449639999999988], [104.17502800000011, 6.449839000000111], [104.17513600000001, 6.450038000000063], [104.17525300000011, 6.450238000000127], [104.17536999999999, 6.450427999999988], [104.17547800000006, 6.45062699999994], [104.17559600000004, 6.450826000000063], [104.17571299999997, 6.451015999999981], [104.17582099999998, 6.451215000000104], [104.17593800000009, 6.451406000000134], [104.17605600000007, 6.451605000000029], [104.17616400000014, 6.451794999999947], [104.17628100000007, 6.451985000000036], [104.17638899999992, 6.452183999999988], [104.17650600000002, 6.452374000000077], [104.17661499999997, 6.452574000000141], [104.17673200000007, 6.452764000000002], [104.17684000000014, 6.45295399999992], [104.17695700000002, 6.453153000000043], [104.17706599999997, 6.453343000000132], [104.17718300000007, 6.453542000000084], [104.17729100000014, 6.453741000000036], [104.17740800000007, 6.453932000000009], [104.17752499999995, 6.454130999999961], [104.17763400000007, 6.454330000000084], [104.177751, 6.454529000000036], [104.1778680000001, 6.454727999999989], [104.17797599999994, 6.454918000000077], [104.17809399999999, 6.455118000000084], [104.17821100000003, 6.455317000000036], [104.17832800000014, 6.455515999999989], [104.17844500000007, 6.455706000000077], [104.17855300000008, 6.45590500000003], [104.17867100000012, 6.4560950000001185], [104.178788, 6.456294999999955], [104.1789050000001, 6.456485000000043], [104.179013, 6.456683999999996], [104.17913099999998, 6.456874000000084], [104.17924800000003, 6.457073000000037], [104.17936500000013, 6.457263000000125], [104.17947300000003, 6.4574629999999615], [104.17959100000002, 6.45765300000005], [104.17969900000008, 6.457852000000003], [104.17981599999996, 6.458051000000125], [104.17993300000006, 6.458241000000044], [104.18004100000013, 6.458439999999996], [104.18015900000012, 6.4586309999999685], [104.18026700000001, 6.458821000000057], [104.18038400000006, 6.4590200000000095], [104.18049200000013, 6.459210000000098], [104.18061000000012, 6.459409000000051], [104.18071800000001, 6.459599000000139], [104.18083500000012, 6.4597890000000575], [104.18094299999996, 6.459989000000064], [104.18106000000006, 6.460178999999982], [104.18116900000001, 6.460378000000105], [104.18128600000011, 6.460568000000023], [104.18140299999999, 6.460758000000112], [104.18152000000009, 6.4609570000000645], [104.18162900000004, 6.461148000000037], [104.18174599999998, 6.461346999999989], [104.18186300000008, 6.461537000000078], [104.18198899999999, 6.46173600000003], [104.18210699999997, 6.461934999999983], [104.18222400000008, 6.462125000000071], [104.18234100000001, 6.462325000000078], [104.18245800000011, 6.462514999999996], [104.1825760000001, 6.462714000000119], [104.18269299999997, 6.462913000000071], [104.18281900000011, 6.46310299999999], [104.18293600000004, 6.4633020000001125], [104.18305400000003, 6.463493000000085], [104.18317100000013, 6.463683000000003], [104.183288, 6.463882000000126], [104.1834050000001, 6.464072000000044], [104.1835230000001, 6.464262000000133], [104.18364000000003, 6.464461000000085], [104.18374800000004, 6.4646510000000035], [104.18386500000014, 6.464841999999976], [104.18398299999996, 6.465032000000065], [104.18410000000006, 6.465231000000017], [104.18421699999999, 6.465421000000106], [104.184325, 6.465620000000058], [104.18444299999999, 6.465809999999976], [104.18456000000009, 6.466000000000065], [104.18467700000002, 6.466200000000072], [104.18479400000012, 6.46638999999999], [104.18491200000011, 6.466589000000113], [104.18502899999999, 6.466788000000065], [104.18515500000012, 6.466977999999983], [104.18527200000005, 6.46717799999999], [104.18539000000004, 6.467368000000079], [104.18550699999992, 6.467567000000031], [104.18562400000002, 6.46775700000012], [104.18574100000012, 6.467956000000072], [104.18585900000011, 6.46814599999999], [104.18597600000004, 6.468336000000079], [104.18609300000008, 6.4685360000000856], [104.18621000000002, 6.468726000000004], [104.186328, 6.4689160000000925], [104.1864450000001, 6.469106000000011], [104.18656200000004, 6.469296000000099], [104.18667900000008, 6.469495000000052], [104.18679700000007, 6.4696850000001405], [104.186914, 6.469876000000113], [104.1870310000001, 6.470066000000031], [104.18713899999995, 6.47025600000012], [104.18725699999999, 6.470455000000072], [104.18737400000003, 6.47064499999999], [104.18749100000014, 6.470835000000079], [104.18760800000007, 6.471035000000086], [104.18772600000005, 6.471225000000004], [104.18784299999993, 6.471424000000127], [104.18796000000003, 6.471614000000045], [104.18807700000013, 6.471812999999997], [104.18819500000012, 6.472003000000086], [104.18830300000002, 6.472202000000038], [104.18842000000006, 6.472402000000045], [104.188537, 6.472592000000134], [104.18865499999998, 6.472791000000086], [104.18876300000005, 6.472990000000038], [104.18887999999998, 6.473180000000127], [104.188988, 6.4733790000000795], [104.1891050000001, 6.473579000000086], [104.18921400000005, 6.473769000000004], [104.18933099999998, 6.473968000000127], [104.18944800000008, 6.4741670000000795], [104.18955599999993, 6.474356999999998], [104.18967400000008, 6.4745560000001205], [104.18978199999998, 6.474747000000093], [104.18989900000008, 6.474946000000045], [104.19000699999992, 6.475136000000134], [104.19012400000003, 6.475335000000086], [104.19024200000001, 6.475534000000039], [104.19035000000008, 6.4757240000001275], [104.19046700000001, 6.475924000000134], [104.19058400000006, 6.476114000000052], [104.19069300000007, 6.476313000000005], [104.19080999999994, 6.4765120000001275], [104.19092700000004, 6.476702000000046], [104.19103500000011, 6.476900999999998], [104.1911530000001, 6.477101000000005], [104.19126999999997, 6.477291000000093], [104.19137800000004, 6.477490000000046], [104.19149499999997, 6.477688999999998], [104.19161300000013, 6.477879000000087], [104.19172100000003, 6.478078000000039], [104.19183800000008, 6.478278000000046], [104.19195500000001, 6.4784680000001345], [104.19206300000008, 6.478667000000087], [104.19218100000006, 6.478866000000039], [104.19228900000013, 6.479064999999991], [104.192406, 6.479264000000114], [104.19251400000007, 6.479453999999976], [104.19262300000003, 6.479654000000039], [104.19274000000013, 6.479852999999991], [104.19284800000003, 6.48004300000008], [104.19296500000007, 6.4802420000000325], [104.19307300000014, 6.480440999999928], [104.19319100000013, 6.480631000000017], [104.19329900000002, 6.48083100000008], [104.19341600000013, 6.481020999999998], [104.19352399999997, 6.481220000000121], [104.19364199999995, 6.481410000000039], [104.19375900000006, 6.481608999999935], [104.19386700000013, 6.481799000000024], [104.193984, 6.481999000000087], [104.19410200000004, 6.482189000000005], [104.19421899999992, 6.482388000000128], [104.19433600000002, 6.4825870000000805], [104.19445300000012, 6.482776999999942], [104.19457100000011, 6.482976000000065], [104.19468799999999, 6.483176000000128], [104.19480500000009, 6.483366000000046], [104.19492200000002, 6.483564999999999], [104.19503099999997, 6.4837640000001215], [104.19514800000007, 6.483953999999983], [104.19526499999995, 6.484152999999935], [104.19538200000005, 6.484343000000024], [104.19550000000004, 6.484534000000053], [104.19561700000014, 6.484724000000142], [104.19573400000007, 6.484923000000094], [104.19585099999995, 6.485112999999956], [104.19596899999993, 6.4853030000000444], [104.19608600000004, 6.4854839999999285], [104.19620300000014, 6.485674000000017], [104.19632999999999, 6.485865000000047], [104.19644700000009, 6.486055000000135], [104.196573, 6.486236000000019], [104.19669900000014, 6.486426000000108], [104.19681700000012, 6.486606999999935], [104.19694300000009, 6.486797000000024], [104.197069, 6.486978000000079], [104.19719600000002, 6.487158999999963], [104.19732199999999, 6.487349999999992], [104.19745699999999, 6.487531000000047]], + "type": "multipoint" + } + ], + "type": "geometrycollection" +} \ No newline at end of file diff --git a/indexer-core/src/test/resources/geo/decimator/geometrycollection_multipolygon.json b/indexer-core/src/test/resources/geo/decimator/geometrycollection_multipolygon.json new file mode 100644 index 0000000000000000000000000000000000000000..dcc883d199aaaf211a5feaef2bb1e026532aa9a1 --- /dev/null +++ b/indexer-core/src/test/resources/geo/decimator/geometrycollection_multipolygon.json @@ -0,0 +1,8 @@ +{ + "geometries": [{ + "coordinates": [[[[111.43829900000003, 4.284251999999924], [111.438355, 4.284292999999991], [111.43846700000006, 4.284208000000035], [111.43852500000003, 4.28425100000004], [111.43852500000003, 4.284506000000022], [111.43841200000014, 4.284591000000091], [111.43852500000003, 4.284674999999936], [111.43852500000003, 4.2847600000000625], [111.43841200000014, 4.284844999999962], [111.43852500000003, 4.284930000000088], [111.43852600000014, 4.285523000000126], [111.43875100000008, 4.285692000000097], [111.43875100000008, 4.285776999999996], [111.43852600000014, 4.2859470000000215], [111.43858100000006, 4.285988000000032], [111.43869300000011, 4.285904000000016], [111.43875100000008, 4.2859470000000215], [111.43875100000008, 4.286202000000003], [111.43886400000002, 4.286286000000018], [111.43886400000002, 4.286411999999984], [111.43903200000005, 4.286411999999984], [111.43914400000011, 4.286327000000028], [111.43925700000005, 4.286411999999984], [111.43936900000006, 4.286411999999984], [111.439482, 4.286327000000028], [111.43959500000011, 4.286411999999984], [111.439707, 4.286411999999984], [111.43982000000011, 4.286327000000028], [111.439933, 4.286411999999984], [111.44049600000005, 4.286411000000044], [111.440609, 4.286325999999974], [111.44072100000005, 4.286411000000044], [111.44111700000013, 4.286411000000044], [111.44111700000013, 4.287345999999957], [111.44083399999994, 4.287345999999957], [111.44072200000011, 4.287431000000083], [111.44027100000011, 4.287431000000083], [111.44015900000005, 4.287515999999982], [111.43970800000005, 4.287515999999982], [111.43959500000011, 4.287601000000109], [111.43925799999994, 4.287601000000109], [111.439145, 4.287686000000065], [111.43880700000011, 4.287686000000065], [111.438694, 4.287771000000134], [111.438357, 4.287771000000134], [111.43830200000008, 4.287813000000085], [111.438357, 4.287854999999979], [111.43880700000011, 4.287854000000095], [111.43886500000013, 4.2878970000001], [111.43875200000002, 4.2879819999999995], [111.43875200000002, 4.288110000000131], [111.43846900000005, 4.288111000000015], [111.43841400000008, 4.288152000000025], [111.43846900000005, 4.288193999999976], [111.43869500000011, 4.288193999999976], [111.43875200000002, 4.288236000000097], [111.43869500000011, 4.288279999999986], [111.438582, 4.288279999999986], [111.43852700000002, 4.288320999999996], [111.438582, 4.288363000000118], [111.43875200000002, 4.288363000000118], [111.43875300000008, 4.289763000000107], [111.43864100000008, 4.2898470000001225], [111.438696, 4.289889000000073], [111.438808, 4.289805000000058], [111.43886600000002, 4.2898470000001225], [111.43886600000002, 4.290102000000104], [111.43875300000008, 4.290187000000003], [111.43886600000002, 4.2902720000001295], [111.43886600000002, 4.290696000000025], [111.43892099999994, 4.290737999999976], [111.43897700000014, 4.290696000000025], [111.43897700000014, 4.29031300000014], [111.43920400000007, 4.29031300000014], [111.43920400000007, 4.290993000000128], [111.4388090000001, 4.290994000000012], [111.43875400000002, 4.291035000000022], [111.4388090000001, 4.291076999999973], [111.43914699999999, 4.291076999999973], [111.43920500000002, 4.291119999999978], [111.43914699999999, 4.291162999999983], [111.4388090000001, 4.291162999999983], [111.43875400000002, 4.291203999999993], [111.4388090000001, 4.291246000000058], [111.43914699999999, 4.291246000000058], [111.43920500000002, 4.291289000000063], [111.43914699999999, 4.291333000000009], [111.43858399999993, 4.291333000000009], [111.43852900000002, 4.291375000000073], [111.43858399999993, 4.291416000000083], [111.4388090000001, 4.291416000000083], [111.43886600000002, 4.291458999999918], [111.4388090000001, 4.291501999999923], [111.43869700000005, 4.291501999999923], [111.43864200000013, 4.291544000000044], [111.43869700000005, 4.291585000000055], [111.4388090000001, 4.291585000000055], [111.43886700000013, 4.2916289999999435], [111.43875400000002, 4.29171400000007], [111.43875500000007, 4.292942000000096], [111.43892299999993, 4.292942000000096], [111.43897900000013, 4.292985999999985], [111.43892299999993, 4.29302899999999], [111.43869700000005, 4.29302899999999], [111.43864200000013, 4.293071000000111], [111.43869700000005, 4.29311100000001], [111.43892299999993, 4.29311100000001], [111.43898000000002, 4.293155000000127], [111.43892299999993, 4.293198000000132], [111.43880999999999, 4.293198000000132], [111.43875500000007, 4.293240000000026], [111.43880999999999, 4.293281000000036], [111.43903499999999, 4.293281000000036], [111.43909299999996, 4.293324999999982], [111.43903600000004, 4.293367999999987], [111.43880999999999, 4.293367999999987], [111.43875500000007, 4.293408999999997], [111.43880999999999, 4.293451000000061], [111.43903600000004, 4.293450000000007], [111.43909299999996, 4.2934940000000665], [111.43903600000004, 4.293537000000072], [111.43880999999999, 4.293537000000072], [111.43875500000007, 4.2935790000000225], [111.43880999999999, 4.293620999999916], [111.43971200000004, 4.293620000000033], [111.43976900000013, 4.2936639999999215], [111.43971200000004, 4.293706999999927], [111.4395990000001, 4.293706999999927], [111.43948599999999, 4.293790999999999], [111.43937399999993, 4.293790999999999], [111.43920600000007, 4.293918000000019], [111.43926100000004, 4.293960000000084], [111.43937399999993, 4.293875000000014], [111.43976900000013, 4.2938740000000735], [111.43977000000001, 4.294129999999939], [111.4395990000001, 4.294129999999939], [111.43948700000004, 4.294215999999949], [111.43937399999993, 4.294215999999949], [111.43920600000007, 4.294342000000086], [111.43926100000004, 4.294384000000036], [111.43937399999993, 4.2942990000000805], [111.43971200000004, 4.2942990000000805], [111.43982499999998, 4.294213999999954], [111.43993699999999, 4.29421300000007], [111.43999500000001, 4.294256999999959], [111.43982499999998, 4.294385000000091], [111.43971200000004, 4.294385000000091], [111.4395990000001, 4.294470000000047], [111.43948700000004, 4.294470000000047], [111.43931900000001, 4.294597000000067], [111.43937399999993, 4.294638000000077], [111.43948700000004, 4.294553000000121], [111.43988200000007, 4.294553000000121], [111.43988200000007, 4.294681000000082], [111.43982499999998, 4.2947240000000875], [111.43971200000004, 4.294640000000072], [111.43954500000007, 4.294640000000072], [111.43954500000007, 4.294894000000113], [111.43937399999993, 4.294894000000113], [111.43931900000001, 4.294936000000007], [111.43937399999993, 4.294977000000074], [111.43954500000007, 4.294977000000074], [111.43954500000007, 4.295359000000019], [111.43937500000004, 4.295488000000034], [111.43869900000004, 4.295488000000034], [111.43864400000012, 4.295529999999985], [111.43869900000004, 4.295570999999995], [111.43892400000004, 4.295570999999995], [111.43898200000001, 4.2956140000000005], [111.43892400000004, 4.295657000000006], [111.43881199999998, 4.295657000000006], [111.43875700000007, 4.295699000000127], [111.43886900000007, 4.295784000000026], [111.43881199999998, 4.295827000000031], [111.43858599999993, 4.295827000000031], [111.43853100000001, 4.295868999999982], [111.43858599999993, 4.295909999999992], [111.43875700000007, 4.295909999999992], [111.43875700000007, 4.296080000000018], [111.43892400000004, 4.296079000000077], [111.43898200000001, 4.296123000000023], [111.43892400000004, 4.296166000000028], [111.43875700000007, 4.296166000000028], [111.43875799999995, 4.297437000000002], [111.4389250000001, 4.297436000000118], [111.43898300000012, 4.297480000000007], [111.4389250000001, 4.297523000000012], [111.43858700000004, 4.297523000000012], [111.43853200000012, 4.297565000000134], [111.43858700000004, 4.297607000000028], [111.4389250000001, 4.297607000000028], [111.43898300000012, 4.2976489999999785], [111.4389250000001, 4.297691999999984], [111.43869999999998, 4.297693000000038], [111.43864500000001, 4.297734000000105], [111.43869999999998, 4.297775999999999], [111.4389250000001, 4.297775999999999], [111.43898300000012, 4.297819000000004], [111.4389250000001, 4.29786300000012], [111.4388130000001, 4.29786300000012], [111.43875799999995, 4.2979040000001305], [111.4388130000001, 4.2979460000000245], [111.43892600000004, 4.2979460000000245], [111.43898300000012, 4.297987999999975], [111.43892600000004, 4.298032000000035], [111.43869999999998, 4.298032000000035], [111.43864500000001, 4.298073000000045], [111.43869999999998, 4.298114999999996], [111.43892600000004, 4.298114999999996], [111.43909600000006, 4.29824300000007], [111.43909600000006, 4.298412000000042], [111.43898300000012, 4.298498000000052], [111.43903800000004, 4.298539000000062], [111.43948900000004, 4.298539000000062], [111.43960199999998, 4.2984539999999924], [111.44016500000004, 4.298453000000052], [111.44027700000004, 4.298367999999982], [111.44038999999998, 4.298453000000052], [111.44050299999992, 4.298367999999982], [111.44117900000009, 4.298367999999982], [111.44129099999992, 4.298284000000137], [111.44140400000003, 4.298367999999982], [111.44151699999998, 4.298284000000137], [111.44219200000003, 4.298283000000026], [111.44230499999998, 4.298198000000127], [111.44241799999992, 4.298283000000026], [111.44252999999998, 4.298198000000127], [111.44298099999997, 4.298198000000127], [111.44309400000009, 4.298283000000026], [111.44455800000009, 4.298281999999972], [111.44467100000003, 4.298365999999987], [111.44602200000003, 4.298365000000047], [111.44613499999997, 4.2984500000000025], [111.44726199999997, 4.298449000000062], [111.44737400000002, 4.298534000000018], [111.44861300000002, 4.298534000000018], [111.44872600000014, 4.298618000000033], [111.44934699999999, 4.298616999999979], [111.44934699999999, 4.298874000000069], [111.44917699999996, 4.298874000000069], [111.44906400000002, 4.298958000000084], [111.44827600000002, 4.298959000000025], [111.44816300000008, 4.2990440000000945], [111.44748700000014, 4.2990440000000945], [111.44737500000008, 4.299130000000105], [111.44681100000014, 4.299130000000105], [111.44669900000014, 4.299215000000061], [111.44602300000014, 4.299215000000061], [111.44591000000003, 4.29929999999996], [111.44546000000008, 4.29929999999996], [111.44534699999997, 4.299385000000086], [111.44478400000014, 4.299385000000086], [111.44467100000003, 4.299469999999985], [111.44433299999992, 4.299471000000096], [111.44422100000008, 4.299555000000112], [111.44377000000009, 4.299555000000112], [111.44365800000003, 4.299640000000068], [111.44332000000014, 4.299640000000068], [111.44320700000003, 4.299725000000137], [111.44275600000003, 4.299726000000078], [111.44264399999997, 4.299810999999977], [111.44230600000009, 4.299810999999977], [111.44219299999997, 4.299894999999992], [111.44185500000009, 4.299894999999992], [111.44174300000003, 4.299980000000119], [111.44151800000009, 4.2999810000000025], [111.44140499999997, 4.300066000000129], [111.44106700000003, 4.300066000000129], [111.44095399999992, 4.300151000000028], [111.44072899999998, 4.300151000000028], [111.44061600000003, 4.300235000000043], [111.44027900000003, 4.300235999999984], [111.44016599999992, 4.300321000000054], [111.43994099999998, 4.300321000000054], [111.43982800000003, 4.3004060000000095], [111.43960300000009, 4.3004060000000095], [111.43948999999998, 4.300491000000136], [111.43937799999992, 4.300491000000136], [111.43926499999998, 4.300574999999981], [111.43915200000004, 4.300574999999981], [111.43904000000003, 4.300491000000136], [111.43892700000009, 4.300576000000035], [111.43870199999998, 4.300576000000035], [111.438647, 4.300617000000045], [111.43870199999998, 4.300658999999996], [111.43892700000009, 4.300658999999996], [111.43898500000012, 4.300702000000001], [111.43892700000009, 4.300746000000061], [111.43881399999998, 4.300746000000061], [111.43875999999995, 4.300787000000071], [111.43881500000009, 4.3008290000000216], [111.43892700000009, 4.3008290000000216], [111.43898500000012, 4.3008709999999155], [111.43892700000009, 4.300915000000032], [111.43881500000009, 4.300915000000032], [111.43875999999995, 4.300956999999926], [111.43881500000009, 4.300997999999936], [111.43892700000009, 4.300997999999936], [111.43898500000012, 4.301040999999941], [111.43892700000009, 4.301085000000057], [111.43881500000009, 4.301085000000057], [111.43875999999995, 4.301126999999951], [111.43881500000009, 4.301168000000018], [111.43892700000009, 4.301168000000018], [111.43898500000012, 4.301211000000023], [111.43892700000009, 4.3012540000000286], [111.43881500000009, 4.3012540000000286], [111.43875999999995, 4.301296000000093], [111.438872, 4.301381000000049], [111.43875999999995, 4.301466000000119], [111.43887300000006, 4.301549999999963], [111.43875999999995, 4.30163500000009], [111.43887300000006, 4.301719999999989], [111.43875999999995, 4.301805000000115], [111.43887300000006, 4.301889000000131], [111.43887300000006, 4.302397999999982], [111.43870300000003, 4.302526000000114], [111.43859000000009, 4.302526000000114], [111.438535, 4.302568000000008], [111.43870300000003, 4.302693999999974], [111.43892799999998, 4.302693999999974], [111.438986, 4.3027380000000335], [111.43892799999998, 4.302781000000039], [111.43881599999997, 4.302781000000039], [111.43876100000006, 4.302822000000049], [111.43887300000006, 4.302907000000005], [111.43876100000006, 4.302992000000074], [111.43881599999997, 4.303034000000025], [111.43892799999998, 4.303034000000025], [111.438986, 4.30307700000003], [111.43892799999998, 4.303118999999924], [111.43870300000003, 4.303120000000035], [111.43864800000011, 4.3031610000000455], [111.43870300000003, 4.303202999999996], [111.43909900000011, 4.303202999999996], [111.43909900000011, 4.303331000000071], [111.438986, 4.303416000000027], [111.43909900000011, 4.303500000000042], [111.43909900000011, 4.304137000000139], [111.43892900000009, 4.304137000000139], [111.438874, 4.30417900000009], [111.43898700000011, 4.304263999999989], [111.43892900000009, 4.304306999999994], [111.43881700000003, 4.304306999999994], [111.43876200000011, 4.304349000000116], [111.43881700000003, 4.30439100000001], [111.43898700000011, 4.304390000000126], [111.43898700000011, 4.304602999999986], [111.438874, 4.304688000000112], [111.438874, 4.304772000000128], [111.43876200000011, 4.304857000000027], [111.43876200000011, 4.305875000000071], [111.43865000000011, 4.305960000000027], [111.43876300000005, 4.306045000000097], [111.4387640000001, 4.307867000000044], [111.43893100000008, 4.307867000000044], [111.43898900000005, 4.307910000000049], [111.43893100000008, 4.307953999999938], [111.43859299999997, 4.307953999999938], [111.43853800000005, 4.30799600000006], [111.43859299999997, 4.3080360000000155], [111.43893100000008, 4.3080360000000155], [111.43898900000005, 4.308080000000075], [111.43893100000008, 4.30812300000008], [111.4387640000001, 4.30812300000008], [111.43876499999999, 4.310284000000024], [111.43887799999993, 4.310368999999923], [111.43876499999999, 4.31045400000005], [111.43898999999999, 4.310623000000021], [111.43887799999993, 4.310709000000031], [111.43899100000004, 4.310794000000101], [111.43893300000008, 4.310837000000106], [111.43870800000008, 4.310837000000106], [111.43865299999999, 4.310879000000057], [111.43870800000008, 4.310920000000067], [111.43893300000008, 4.310920000000067], [111.43899100000004, 4.310963000000072], [111.43887799999993, 4.311047999999971], [111.43899100000004, 4.311133000000098], [111.43893300000008, 4.311176000000103], [111.43870800000008, 4.311176000000103], [111.43865299999999, 4.311217999999997], [111.43870800000008, 4.311260000000118], [111.43893300000008, 4.311259000000064], [111.43899100000004, 4.311302000000069], [111.43893300000008, 4.311345000000074], [111.43882100000002, 4.311345000000074], [111.4387660000001, 4.311387000000138], [111.43882100000002, 4.311429000000089], [111.43893300000008, 4.311429000000089], [111.43899100000004, 4.311472000000094], [111.43893300000008, 4.311515999999983], [111.4387660000001, 4.311515999999983], [111.4387660000001, 4.312872000000084], [111.43859600000008, 4.312872000000084], [111.43854099999993, 4.312913000000094], [111.43859600000008, 4.312955000000045], [111.4387660000001, 4.312955000000045], [111.43876699999998, 4.313338000000101], [111.43865400000004, 4.313423000000057], [111.43876699999998, 4.313508000000127], [111.43876699999998, 4.31439899999998], [111.43848400000002, 4.31439899999998], [111.4384290000001, 4.314441000000045], [111.43848400000002, 4.314482000000055], [111.43876699999998, 4.314482000000055], [111.43876699999998, 4.314609000000132], [111.43887900000004, 4.314694000000031], [111.43882200000013, 4.31473799999992], [111.43848500000013, 4.31473799999992], [111.43842999999998, 4.314780000000042], [111.43848500000013, 4.314821000000052], [111.43882300000001, 4.314821000000052], [111.43887999999993, 4.314864000000057], [111.43882300000001, 4.314907000000062], [111.43859699999996, 4.314907000000062], [111.43848500000013, 4.314992000000018], [111.4383170000001, 4.314992000000018], [111.4383170000001, 4.315244999999948], [111.43848500000013, 4.315244999999948], [111.43859800000007, 4.315330000000074], [111.43887999999993, 4.315330000000074], [111.43888100000004, 4.31588099999999], [111.4387680000001, 4.315966000000117], [111.43877000000009, 4.318298000000141], [111.43899500000003, 4.318298000000141], [111.43899500000003, 4.318722999999977], [111.43871200000007, 4.318722999999977], [111.43865699999998, 4.3187650000000986], [111.43871200000007, 4.318806000000109], [111.43893700000001, 4.318806000000109], [111.43899399999998, 4.318849000000114], [111.43893800000012, 4.318893000000003], [111.43882500000001, 4.318893000000003], [111.43877000000009, 4.318935000000124], [111.43882500000001, 4.318976000000134], [111.43893800000012, 4.318976000000134], [111.43899399999998, 4.319020000000023], [111.43882500000001, 4.319147000000044], [111.43871200000007, 4.319061999999974], [111.43860000000006, 4.319061999999974], [111.43854499999992, 4.3191040000000385], [111.43860000000006, 4.319145999999989], [111.43877000000009, 4.319145000000049], [111.43877000000009, 4.319274000000064], [111.43888300000003, 4.319358000000136], [111.43877000000009, 4.319443000000035], [111.43877099999997, 4.3206720000001155], [111.438939, 4.3206720000001155], [111.43899599999992, 4.320715000000121], [111.438939, 4.320758000000126], [111.43871299999995, 4.320758000000126], [111.43865800000003, 4.320800000000077], [111.43899599999992, 4.321054000000117], [111.438939, 4.321098000000006], [111.43882600000006, 4.321098000000006], [111.43877099999997, 4.3211390000000165], [111.43888400000009, 4.321223999999972], [111.43877099999997, 4.321307999999988], [111.43888400000009, 4.321393000000114], [111.43877099999997, 4.321479000000124], [111.43899599999992, 4.321648000000039], [111.43877200000009, 4.321818000000064], [111.43899700000003, 4.3219870000000356], [111.43899700000003, 4.322157000000061], [111.43888400000009, 4.322242000000017], [111.43899700000003, 4.322326000000032], [111.43894000000012, 4.322369000000037], [111.43891200000007, 4.322369000000037], [111.43890700000003, 4.322370000000092], [111.438827, 4.322370000000092], [111.43877200000009, 4.322411000000102], [111.438827, 4.322453000000053], [111.43894000000012, 4.322453000000053], [111.43905199999995, 4.322537999999952], [111.43939000000006, 4.322537000000068], [111.43950299999995, 4.322621999999967], [111.43984100000006, 4.322621000000083], [111.439954, 4.322706000000039], [111.440291, 4.322706000000039], [111.44040400000011, 4.322791000000109], [111.440742, 4.322791000000109], [111.44085500000011, 4.322876000000065], [111.44130500000006, 4.322876000000065], [111.44141799999994, 4.32296000000008], [111.441981, 4.322958999999969], [111.44209400000011, 4.323044000000095], [111.442657, 4.323044000000095], [111.44277000000011, 4.3231289999999944], [111.44333299999994, 4.3231289999999944], [111.44339100000013, 4.323172], [111.44333299999994, 4.323215000000005], [111.44209400000011, 4.323216000000116], [111.44198200000011, 4.323300000000131], [111.441869, 4.323216000000116], [111.44175600000005, 4.323216000000116], [111.441644, 4.323301000000015], [111.44153100000005, 4.323217], [111.44141799999994, 4.323217], [111.44130600000011, 4.323301000000015], [111.441193, 4.323217], [111.44108000000006, 4.323217], [111.44096800000005, 4.323301000000015], [111.44085500000011, 4.323217], [111.440742, 4.323217], [111.44062999999994, 4.323301000000015], [111.440517, 4.323217], [111.44040400000011, 4.323217], [111.44029200000006, 4.323301000000015], [111.44017900000011, 4.323217], [111.43871499999995, 4.323218000000111], [111.43866000000003, 4.323259000000121], [111.43871499999995, 4.323300000000131], [111.43894000000012, 4.323300000000131], [111.43899800000008, 4.32334400000002], [111.43888499999997, 4.323428999999976], [111.43899800000008, 4.323514000000102], [111.43894000000012, 4.323555999999996], [111.43871499999995, 4.323557000000108], [111.43866000000003, 4.323598000000118], [111.43871499999995, 4.323640000000012], [111.43894000000012, 4.323640000000012], [111.43899800000008, 4.323683000000017], [111.43894000000012, 4.323726000000022], [111.43888400000009, 4.323726000000022], [111.43887000000001, 4.323726000000022], [111.43886500000013, 4.323727000000133], [111.43882800000006, 4.323727000000133], [111.43877300000014, 4.323767999999973], [111.43882800000006, 4.323810000000037], [111.43899800000008, 4.323810000000037], [111.43899800000008, 4.323937000000058], [111.43894000000012, 4.323981000000003], [111.43882800000006, 4.3238960000000475], [111.43877300000014, 4.323937000000058], [111.43877300000014, 4.325125000000128], [111.43888600000008, 4.3252089999999725], [111.438829, 4.325253000000089], [111.43849100000006, 4.325253000000089], [111.43843600000014, 4.325294999999983], [111.43849100000006, 4.325335999999993], [111.43877400000002, 4.325335999999993], [111.43877400000002, 4.3254640000001245], [111.43888600000008, 4.32554800000014], [111.43877400000002, 4.3256339999999796], [111.43888600000008, 4.325719000000106], [111.43877400000002, 4.325804000000005], [111.43877400000002, 4.32588800000002], [111.43888699999997, 4.325972999999976], [111.43888699999997, 4.326058000000046], [111.43877400000002, 4.326143000000002], [111.43888699999997, 4.326227000000017], [111.43888699999997, 4.326397000000043], [111.43877400000002, 4.326481999999999], [111.43900000000008, 4.3266510000000835], [111.43888699999997, 4.326736000000039], [111.43900000000008, 4.326820000000055], [111.43894200000011, 4.326863999999944], [111.438829, 4.326863999999944], [111.43877500000013, 4.326905000000011], [111.43883000000005, 4.326947000000075], [111.43900000000008, 4.326947000000075], [111.43900000000008, 4.327160000000106], [111.43888699999997, 4.327245000000062], [111.43900000000008, 4.327329999999961], [111.43894200000011, 4.327372999999966], [111.43883000000005, 4.327372999999966], [111.43871699999994, 4.327288000000067], [111.43866200000002, 4.327329999999961], [111.43883000000005, 4.3274560000000974], [111.43894200000011, 4.3274560000000974], [111.43900000000008, 4.327499000000103], [111.43888800000008, 4.3275840000000585], [111.43900000000008, 4.327669000000128], [111.438943, 4.327712000000133], [111.43871699999994, 4.327712000000133], [111.43866200000002, 4.327754000000084], [111.43871699999994, 4.327795999999978], [111.438943, 4.327795999999978], [111.43900000000008, 4.327838000000099], [111.438943, 4.327881999999988], [111.43883000000005, 4.327881999999988], [111.43877500000013, 4.327922999999998], [111.43883000000005, 4.32796500000012], [111.438943, 4.32796500000012], [111.43900000000008, 4.328008000000125], [111.438943, 4.328052000000014], [111.43877500000013, 4.328052000000014], [111.43877600000002, 4.329195000000084], [111.43888899999996, 4.32928000000004], [111.438831, 4.329324000000099], [111.43849300000005, 4.329324000000099], [111.43843800000013, 4.329364999999939], [111.43849300000005, 4.32940700000006], [111.43871800000005, 4.32940700000006], [111.43877600000002, 4.329448999999954], [111.43866300000008, 4.329534000000081], [111.43871800000005, 4.329576000000031], [111.438831, 4.329576000000031], [111.43888899999996, 4.3296190000000365], [111.43877600000002, 4.329704000000106], [111.43877600000002, 4.329789000000062], [111.43888899999996, 4.329874000000132], [111.43877600000002, 4.329959000000088], [111.43877600000002, 4.330043999999987], [111.43888899999996, 4.330128000000002], [111.43888899999996, 4.330213000000128], [111.43900200000007, 4.330298000000084], [111.43900200000007, 4.330382999999983], [111.4389440000001, 4.330425000000105], [111.438831, 4.3303410000000895], [111.43877700000013, 4.330382999999983], [111.4389440000001, 4.33050900000012], [111.4393950000001, 4.330508000000009], [111.43950800000005, 4.330593000000135], [111.43995799999993, 4.330593000000135], [111.44007100000005, 4.3306780000000344], [111.44052099999999, 4.3306780000000344], [111.4406340000001, 4.330762000000107], [111.44119699999999, 4.330762000000107], [111.44125400000007, 4.3308040000000005], [111.4413100000001, 4.330846000000122], [111.44187299999993, 4.330846000000122], [111.44198600000004, 4.330931000000021], [111.4425490000001, 4.330931000000021], [111.44266200000004, 4.331015999999977], [111.44333800000004, 4.331015000000036], [111.44345099999998, 4.3310990000000515], [111.44412600000004, 4.3310990000000515], [111.44423899999998, 4.3311840000000075], [111.44463500000006, 4.3311840000000075], [111.44463500000006, 4.331312000000139], [111.44486, 4.331481000000053], [111.44486, 4.331694000000084], [111.43872000000005, 4.33169700000002], [111.43866500000007, 4.331739000000084], [111.43872000000005, 4.331781000000035], [111.43894499999999, 4.331781000000035], [111.43900300000001, 4.33182400000004], [111.43894499999999, 4.331867000000045], [111.43883200000005, 4.331867000000045], [111.43877700000013, 4.33190900000011], [111.43883200000005, 4.3319510000000605], [111.43894499999999, 4.3319510000000605], [111.43900300000001, 4.331994000000066], [111.43894499999999, 4.332037000000071], [111.4386070000001, 4.332037000000071], [111.43855199999996, 4.332078000000081], [111.4386070000001, 4.332119999999975], [111.43894499999999, 4.332119999999975], [111.43900300000001, 4.33216299999998], [111.43894499999999, 4.332207000000096], [111.43883299999993, 4.332207000000096], [111.43877800000001, 4.3322480000001065], [111.43883299999993, 4.332290000000057], [111.43894499999999, 4.332290000000057], [111.43900300000001, 4.332333000000062], [111.43894499999999, 4.3323760000000675], [111.43877800000001, 4.3323760000000675], [111.43877800000001, 4.333520000000021], [111.43889100000013, 4.33360499999992], [111.43889100000013, 4.333688999999993], [111.43883299999993, 4.333733000000052], [111.4387210000001, 4.333647999999926], [111.43860799999999, 4.333647999999926], [111.43855300000007, 4.333690000000047], [111.43860799999999, 4.333731000000057], [111.43877800000001, 4.333731000000057], [111.43877800000001, 4.33379600000012], [111.43877800000001, 4.33382899999998], [111.43877800000001, 4.3338370000001305], [111.43877900000012, 4.333849000000043], [111.43877900000012, 4.333860000000072], [111.43889000000007, 4.333945000000028], [111.43877900000012, 4.334029000000044], [111.43877900000012, 4.33436800000004], [111.43889200000007, 4.33445300000011], [111.43889200000007, 4.334622000000081], [111.43877900000012, 4.33470699999998], [111.43889200000007, 4.334792000000107], [111.43889200000007, 4.334961000000078], [111.43877900000012, 4.335045999999977], [111.43889200000007, 4.3351310000001035], [111.43889200000007, 4.335259000000008], [111.43872199999998, 4.335259000000008], [111.43866700000007, 4.335301000000129], [111.43889200000007, 4.335470999999984], [111.43889200000007, 4.335556000000054], [111.43878000000001, 4.335640000000126], [111.43889200000007, 4.335725000000025], [111.43878000000001, 4.335809999999981], [111.43889200000007, 4.3358950000000505], [111.43878000000001, 4.335979000000066], [111.43878000000001, 4.337167000000136], [111.43889300000012, 4.337250999999981], [111.43883499999993, 4.337293999999986], [111.43860999999998, 4.337295000000097], [111.43855500000006, 4.337336000000107], [111.43860999999998, 4.337378000000001], [111.43894800000004, 4.337378000000001], [111.43900600000006, 4.337421000000006], [111.43894800000004, 4.337464000000011], [111.4387230000001, 4.3374650000001225], [111.438668, 4.337506000000133], [111.4387230000001, 4.337546999999972], [111.43883600000004, 4.337546999999972], [111.43889300000012, 4.337589999999977], [111.43878100000012, 4.337675000000104], [111.43883600000004, 4.337716999999998], [111.43894800000004, 4.337716999999998], [111.43900600000006, 4.337760000000003], [111.43894800000004, 4.337804000000119], [111.4387230000001, 4.337804000000119], [111.438668, 4.337845000000129], [111.4387230000001, 4.33788600000014], [111.43894800000004, 4.33788600000014], [111.439119, 4.338014000000044], [111.43900600000006, 4.338099], [111.439119, 4.338184000000069], [111.439119, 4.338269000000025], [111.43906099999998, 4.33831200000003], [111.43894899999998, 4.338227000000074], [111.438894, 4.338269000000025], [111.43900600000006, 4.338353999999924], [111.43900600000006, 4.338439000000051], [111.439119, 4.338523000000066], [111.43906200000009, 4.338566000000071], [111.43883600000004, 4.338566000000071], [111.43878100000012, 4.338608000000022], [111.43883600000004, 4.3386500000000865], [111.43906200000009, 4.338649000000032], [111.4391740000001, 4.338733999999931], [111.43934500000006, 4.338733999999931], [111.43934500000006, 4.339455999999984], [111.43923200000012, 4.3395399999999995], [111.43934500000006, 4.339625000000126], [111.43934500000006, 4.339710000000082], [111.43928700000004, 4.339754000000141], [111.43917500000003, 4.339669000000015], [111.43906200000009, 4.339669000000015], [111.43900699999995, 4.339711000000136], [111.43912000000006, 4.339796000000092], [111.43912000000006, 4.340008000000012], [111.43872399999998, 4.340008000000012], [111.43866900000006, 4.340050000000133], [111.43872399999998, 4.340092000000027], [111.43895000000003, 4.340092000000027], [111.43900699999995, 4.340133999999978], [111.43889500000012, 4.340219000000047], [111.43900800000006, 4.340304000000003], [111.43895000000003, 4.340348000000063], [111.43883699999992, 4.340348000000063], [111.438782, 4.34038900000013], [111.43883699999992, 4.340431000000024], [111.43895000000003, 4.340431000000024], [111.43900800000006, 4.3404729999999745], [111.43895000000003, 4.340517000000034], [111.43883699999992, 4.340517000000034], [111.438782, 4.340558000000044], [111.43883699999992, 4.340599999999995], [111.43895000000003, 4.340599999999995], [111.43900800000006, 4.340643], [111.43895000000003, 4.3406870000000595], [111.438782, 4.3406870000000595], [111.43878300000006, 4.3419150000000855], [111.438896, 4.3419999999999845], [111.43883800000003, 4.342044000000101], [111.43861300000003, 4.342044000000101], [111.43855800000011, 4.342085000000111], [111.43861300000003, 4.342126000000121], [111.43895099999997, 4.342126000000121], [111.43900800000006, 4.34217000000001], [111.43895099999997, 4.342213000000015], [111.43872599999997, 4.342213000000015], [111.43867100000006, 4.3422550000001365], [111.43872599999997, 4.342295999999976], [111.43895099999997, 4.342295999999976], [111.43900899999994, 4.342340000000036], [111.43895099999997, 4.342381999999986], [111.43883800000003, 4.342381999999986], [111.43878300000006, 4.342424000000108], [111.43883800000003, 4.342465000000118], [111.43895099999997, 4.342465000000118], [111.43900899999994, 4.342509000000007], [111.43895099999997, 4.342552000000012], [111.43872599999997, 4.342552000000012], [111.43867100000006, 4.342594000000133], [111.43872599999997, 4.342636000000027], [111.43928900000003, 4.342634999999973], [111.43940199999997, 4.3427200000000425], [111.44018999999997, 4.3427200000000425], [111.44030300000009, 4.342804000000058], [111.44052800000003, 4.342804000000058], [111.44064099999997, 4.342889000000014], [111.44097900000008, 4.34288800000013], [111.44109199999997, 4.342973000000029], [111.44131700000014, 4.342973000000029], [111.44143000000008, 4.343057999999985], [111.44165500000003, 4.343057999999985], [111.44176800000014, 4.343142], [111.44210600000002, 4.343142], [111.44221800000008, 4.34322700000007], [111.44244400000014, 4.34322700000007], [111.44255599999997, 4.343312000000026], [111.44289400000008, 4.343312000000026], [111.44300699999997, 4.343396000000041], [111.44334500000008, 4.34339499999993], [111.44345800000002, 4.343480000000056], [111.44379600000008, 4.343480000000056], [111.44390800000014, 4.343565000000012], [111.44424600000002, 4.343565000000012], [111.44435900000013, 4.343650000000082], [111.44469700000002, 4.343650000000082], [111.44481000000013, 4.343734000000097], [111.44503500000008, 4.343734000000097], [111.44514800000002, 4.343819000000053], [111.44548600000013, 4.343817999999942], [111.44559800000013, 4.3439030000000685], [111.44604899999996, 4.3439030000000685], [111.44616200000007, 4.3439879999999675], [111.44650000000001, 4.3439879999999675], [111.44661200000002, 4.34407200000004], [111.44706300000001, 4.34407200000004], [111.44717599999996, 4.344157000000109], [111.44762600000007, 4.344156000000055], [111.44773900000001, 4.344241000000125], [111.44819000000001, 4.344241000000125], [111.44830200000007, 4.3443260000000805], [111.44875300000007, 4.3443260000000805], [111.44886600000001, 4.344410000000096], [111.44937399999992, 4.344410000000096], [111.44937399999992, 4.3447510000000875], [111.43872700000009, 4.3447570000000155], [111.43867199999994, 4.344799000000137], [111.43872700000009, 4.3448399999999765], [111.43895200000003, 4.3448399999999765], [111.43901000000005, 4.344882999999982], [111.43895300000014, 4.344927000000041], [111.43884000000003, 4.344927000000041], [111.43878500000005, 4.344968999999992], [111.43884000000003, 4.345009000000118], [111.43895300000014, 4.345009000000118], [111.43901000000005, 4.345053000000007], [111.43895300000014, 4.345096000000012], [111.43884000000003, 4.345096000000012], [111.43878500000005, 4.345138000000134], [111.43884000000003, 4.345178999999973], [111.43895300000014, 4.345178999999973], [111.43901000000005, 4.345223000000033], [111.43895300000014, 4.345266000000038], [111.43884000000003, 4.345266000000038], [111.43878500000005, 4.345307999999989], [111.43884000000003, 4.345348999999999], [111.43889700000011, 4.345348999999999], [111.43890399999998, 4.345348999999999], [111.43892799999998, 4.345348000000058], [111.43895300000014, 4.345348000000058], [111.43901000000005, 4.345392000000004], [111.43895300000014, 4.345435000000009], [111.43878500000005, 4.345435000000009], [111.438786, 4.346664000000089], [111.4388990000001, 4.346748999999988], [111.43884100000008, 4.3467919999999935], [111.43861600000014, 4.3467919999999935], [111.43856099999999, 4.346834000000115], [111.43861600000014, 4.346876000000009], [111.43872800000014, 4.346876000000009], [111.438786, 4.346919000000014], [111.43867300000005, 4.347003000000029], [111.43872800000014, 4.34704499999998], [111.43884100000008, 4.34704499999998], [111.4388990000001, 4.347087999999985], [111.438786, 4.347173000000112], [111.4388990000001, 4.347258000000011], [111.43884100000008, 4.347301000000016], [111.43872900000008, 4.347301000000016], [111.43867399999993, 4.347342000000026], [111.43872900000008, 4.347383999999977], [111.4388990000001, 4.347383999999977], [111.4388990000001, 4.347512000000052], [111.438786, 4.3475970000000075], [111.4388990000001, 4.347682000000077], [111.4388990000001, 4.347851999999932], [111.43878700000005, 4.347936000000004], [111.4388990000001, 4.348021000000074], [111.43878700000005, 4.34810600000003], [111.43878700000005, 4.348274999999944], [111.43889999999999, 4.348360000000071], [111.43889999999999, 4.348530000000096], [111.43878700000005, 4.3486140000001114], [111.43889999999999, 4.348699000000067], [111.43889999999999, 4.348869000000093], [111.43901200000005, 4.348953000000108], [111.43895500000008, 4.348996999999997], [111.43884199999997, 4.348996999999997], [111.43878700000005, 4.3490390000001184], [111.43884199999997, 4.349080000000129], [111.43895500000008, 4.349080000000129], [111.43901200000005, 4.3491240000000175], [111.43889999999999, 4.34920800000009], [111.4390130000001, 4.349292999999989], [111.43895500000008, 4.349335999999994], [111.43884199999997, 4.349335999999994], [111.43878700000005, 4.349378000000115], [111.43884199999997, 4.349419000000125], [111.43906800000002, 4.349419000000125], [111.43918000000008, 4.3495040000000245], [111.43963100000008, 4.3495040000000245], [111.43974400000002, 4.34958800000004], [111.43985600000002, 4.3495040000000245], [111.43996899999996, 4.34958800000004], [111.44019400000013, 4.34958800000004], [111.44030700000008, 4.349672999999996], [111.44075800000007, 4.349672999999996], [111.44087000000007, 4.349758000000122], [111.44154600000007, 4.349757000000011], [111.44165900000002, 4.349842000000137], [111.44233500000001, 4.349842000000137], [111.44244800000013, 4.349925999999982], [111.44334900000007, 4.349925000000042], [111.44340700000004, 4.349968999999987], [111.44334900000007, 4.350011999999992], [111.43873000000013, 4.350015000000042], [111.43867500000005, 4.350056000000052], [111.43873000000013, 4.350098000000003], [111.43895600000002, 4.350098000000003], [111.4390130000001, 4.350141000000008], [111.43895600000002, 4.350184000000013], [111.43884300000008, 4.350184000000013], [111.43878799999999, 4.350226000000077], [111.43884300000008, 4.350266999999917], [111.43895600000002, 4.350266999999917], [111.4390130000001, 4.350309999999922], [111.43895600000002, 4.3503540000000385], [111.43861800000013, 4.3503540000000385], [111.43856299999999, 4.350395999999932], [111.43861800000013, 4.350436999999943], [111.43884300000008, 4.350436999999943], [111.4389010000001, 4.350481000000059], [111.43878799999999, 4.350565000000074], [111.4389010000001, 4.35065000000003], [111.43878799999999, 4.3507350000001], [111.43878900000004, 4.3519220000001155], [111.43884399999996, 4.351963000000126], [111.43889999999999, 4.3519220000001155], [111.43889999999999, 4.351836999999989], [111.43895700000007, 4.351793999999984], [111.43901399999999, 4.351836999999989], [111.43901399999999, 4.35205000000002], [111.43861900000002, 4.35205000000002], [111.4385640000001, 4.352092000000141], [111.43861900000002, 4.352134000000035], [111.43895700000007, 4.352132999999981], [111.43901399999999, 4.352175999999986], [111.43895700000007, 4.352218999999991], [111.43873100000002, 4.352218999999991], [111.4386760000001, 4.3522610000000554], [111.43873100000002, 4.352303000000006], [111.43895700000007, 4.352303000000006], [111.4390150000001, 4.352346000000011], [111.43895700000007, 4.3523890000000165], [111.43878900000004, 4.3523890000000165], [111.43878900000004, 4.352514999999926], [111.43867700000004, 4.352600000000052], [111.43890199999998, 4.352770000000078], [111.43890199999998, 4.352854000000093], [111.43878999999993, 4.352939000000049], [111.43890199999998, 4.353023999999948], [111.43890199999998, 4.3532790000001], [111.43878999999993, 4.353364000000056], [111.43890199999998, 4.353448000000071], [111.43890300000004, 4.353702999999996], [111.43878999999993, 4.353787000000011], [111.43890300000004, 4.353872000000138], [111.43890300000004, 4.354380999999989], [111.43901599999998, 4.354465000000005], [111.43901599999998, 4.354805000000056], [111.43890300000004, 4.354890000000012], [111.43901599999998, 4.354975000000081], [111.43901599999998, 4.355228999999952], [111.43912899999992, 4.355314000000078], [111.43907100000013, 4.355357000000083], [111.43884599999996, 4.355357000000083], [111.43879100000004, 4.355398000000093], [111.43884599999996, 4.355440000000044], [111.43918400000007, 4.355440000000044], [111.43924200000004, 4.355483000000049], [111.43918400000007, 4.355527000000109], [111.43884599999996, 4.355527000000109], [111.43879100000004, 4.355568000000119], [111.43884599999996, 4.35561000000007], [111.43918400000007, 4.35561000000007], [111.43924200000004, 4.355653000000075], [111.43918400000007, 4.35569600000008], [111.43862100000001, 4.35569600000008], [111.4385660000001, 4.355737999999974], [111.43862100000001, 4.355778999999984], [111.43895900000007, 4.355778999999984], [111.43901700000009, 4.355821999999989], [111.43895900000007, 4.3558660000001055], [111.43884599999996, 4.3558660000001055], [111.43879100000004, 4.3559079999999994], [111.43884599999996, 4.3559490000000665], [111.43895900000007, 4.3559490000000665], [111.43901599999998, 4.355993000000126], [111.43895900000007, 4.356035000000077], [111.43879100000004, 4.356035000000077], [111.43879199999992, 4.357306000000051], [111.43896000000001, 4.357306000000051], [111.43901700000009, 4.357349000000056], [111.43896000000001, 4.357392000000061], [111.43862200000007, 4.357392000000061], [111.43856699999998, 4.357434000000012], [111.43862200000007, 4.357475000000022], [111.43896000000001, 4.357475000000022], [111.43901700000009, 4.357519000000082], [111.43896000000001, 4.357562000000087], [111.43884700000007, 4.357562000000087], [111.43879199999992, 4.357604000000038], [111.43884700000007, 4.357645000000048], [111.43907300000012, 4.357645000000048], [111.43913000000003, 4.357688000000053], [111.43907300000012, 4.357731000000058], [111.43884700000007, 4.357731000000058], [111.43879199999992, 4.357772999999952], [111.43896000000001, 4.357899999999972], [111.43907300000012, 4.357813999999962], [111.43913000000003, 4.357858000000078], [111.43913000000003, 4.357985000000099], [111.43884700000007, 4.357985999999983], [111.43879199999992, 4.35802700000005], [111.43884700000007, 4.358069000000114], [111.44960700000001, 4.358062000000075], [111.44960800000013, 4.358530000000087], [111.44972000000013, 4.358614000000102], [111.44972000000013, 4.358912000000089], [111.44943699999999, 4.358912000000089], [111.44932499999999, 4.358996999999988], [111.44898700000005, 4.358996999999988], [111.44887399999993, 4.3590820000001145], [111.44864899999999, 4.359082999999998], [111.44853600000005, 4.359168000000125], [111.44819799999999, 4.359168000000125], [111.44808599999993, 4.35925200000014], [111.44786099999999, 4.35925200000014], [111.44774800000005, 4.359337000000039], [111.4475230000001, 4.359337000000039], [111.44740999999999, 4.359423000000049], [111.44707200000005, 4.359423000000049], [111.44695899999994, 4.359508000000005], [111.44673399999999, 4.359508000000005], [111.44662199999993, 4.359592000000021], [111.4463960000001, 4.359592000000021], [111.44628400000005, 4.35967699999992], [111.44594599999999, 4.359678000000031], [111.44583300000005, 4.35976299999993], [111.4456080000001, 4.35976299999993], [111.445495, 4.359848000000056], [111.44527, 4.359848000000056], [111.44515700000005, 4.359932000000072], [111.44493200000011, 4.359932000000072], [111.444819, 4.360018000000082], [111.44448100000011, 4.360018000000082], [111.44436900000005, 4.360103000000038], [111.444143, 4.360103000000038], [111.444031, 4.360188000000107], [111.44391800000005, 4.360188000000107], [111.443806, 4.360271999999952], [111.43884900000006, 4.360275000000058], [111.43879399999992, 4.360317000000123], [111.43884900000006, 4.360357999999962], [111.43918700000012, 4.360357999999962], [111.43924400000003, 4.360402000000079], [111.43918700000012, 4.360445000000084], [111.43884900000006, 4.360445000000084], [111.43879399999992, 4.360486999999978], [111.43884900000006, 4.360529000000099], [111.43918700000012, 4.360527999999988], [111.43924500000014, 4.360570999999993], [111.43918700000012, 4.360613999999998], [111.43862400000006, 4.360615000000109], [111.43856899999997, 4.3606560000001195], [111.43862400000006, 4.36069800000007], [111.43896199999995, 4.36069800000007], [111.43901900000009, 4.3607410000000755], [111.43896199999995, 4.360784000000081], [111.43884900000006, 4.360785000000135], [111.43879399999992, 4.360825999999975], [111.43884900000006, 4.360868000000096], [111.43896199999995, 4.360868000000096], [111.43901900000009, 4.36090999999999], [111.43896199999995, 4.360954000000106], [111.43879399999992, 4.360954000000106], [111.43879500000003, 4.362311000000091], [111.438625, 4.362311000000091], [111.43857000000003, 4.362352000000101], [111.438625, 4.362394000000052], [111.43879500000003, 4.362394000000052], [111.43879500000003, 4.362562999999966], [111.43907500000006, 4.362562999999966], [111.43913300000008, 4.362605999999971], [111.43907500000006, 4.362650000000087], [111.43885000000012, 4.362650000000087], [111.43879500000003, 4.362691999999981], [111.43885000000012, 4.362733000000048], [111.43896300000006, 4.362733000000048], [111.43902000000014, 4.3627760000000535], [111.43896300000006, 4.362819000000059], [111.43885000000012, 4.362819000000059], [111.43879500000003, 4.362861000000123], [111.43885000000012, 4.362902000000133], [111.43902100000008, 4.362902000000133], [111.43902100000008, 4.363073999999983], [111.43885000000012, 4.363073999999983], [111.43879500000003, 4.363116000000105], [111.43885000000012, 4.363157000000115], [111.43902100000008, 4.363157000000115], [111.43902100000008, 4.36341299999998], [111.438851, 4.36341299999998], [111.43879600000008, 4.363455000000101], [111.438851, 4.363496999999995], [111.43902100000008, 4.363496999999995], [111.43902100000008, 4.363794000000041], [111.43890900000002, 4.3638780000000565], [111.43902100000008, 4.3639630000000125], [111.43896399999994, 4.364007000000072], [111.43873800000011, 4.364007000000072], [111.43868299999997, 4.364049000000023], [111.43873800000011, 4.364090000000033], [111.43896399999994, 4.364090000000033], [111.43902100000008, 4.364133000000038], [111.43890900000002, 4.364217999999994], [111.43902100000008, 4.3643030000000635], [111.43896399999994, 4.364346000000069], [111.438851, 4.364346000000069], [111.43879600000008, 4.3643880000000195], [111.438851, 4.36442900000003], [111.43896399999994, 4.36442900000003], [111.43902200000014, 4.364472000000035], [111.43896399999994, 4.36451500000004], [111.43879600000008, 4.36451500000004], [111.43879700000002, 4.365913999999975], [111.43885200000011, 4.36595600000004], [111.43890800000014, 4.365913999999975], [111.43890800000014, 4.365829000000019], [111.43896500000005, 4.36578500000013], [111.43902200000014, 4.365829000000019], [111.43902200000014, 4.36604200000005], [111.43851400000005, 4.366042999999991], [111.43845900000008, 4.366083000000117], [111.43851400000005, 4.366125000000011], [111.43896500000005, 4.366125000000011], [111.43902300000002, 4.366168000000016], [111.43896500000005, 4.366211000000021], [111.43862699999994, 4.366212000000132], [111.43857200000002, 4.366252999999972], [111.43862699999994, 4.3662950000000365], [111.439078, 4.3662950000000365], [111.43913500000008, 4.366338000000042], [111.439078, 4.366381000000047], [111.43885200000011, 4.366381000000047], [111.43879700000002, 4.366422000000057], [111.43885200000011, 4.366464000000008], [111.43896500000005, 4.366464000000008], [111.43902300000002, 4.366507000000013], [111.43896500000005, 4.366551000000072], [111.43885200000011, 4.366551000000072], [111.43879700000002, 4.366592000000082], [111.43885200000011, 4.366634000000033], [111.43896500000005, 4.366634000000033], [111.439078, 4.366718999999932], [111.439641, 4.366718999999932], [111.43975399999994, 4.366803000000004], [111.440317, 4.366802000000064], [111.4404300000001, 4.36688700000002], [111.44099299999999, 4.36688700000002], [111.4411060000001, 4.366972000000089], [111.44166899999993, 4.366972000000089], [111.44178200000005, 4.367057000000045], [111.4423450000001, 4.367055999999934], [111.44245800000004, 4.367139999999949], [111.44290799999999, 4.367139999999949], [111.4430210000001, 4.367225000000076], [111.4434720000001, 4.367225000000076], [111.44352900000001, 4.367268000000081], [111.4434720000001, 4.36731199999997], [111.44178200000005, 4.367313000000081], [111.44166899999993, 4.367397000000096], [111.439529, 4.36739799999998], [111.43941600000005, 4.367483000000107], [111.43896599999994, 4.367483000000107], [111.43891100000002, 4.367525000000057], [111.43902300000002, 4.367610000000127], [111.43896599999994, 4.367653000000132], [111.43893800000012, 4.367653000000132], [111.43892799999998, 4.367654000000073], [111.438853, 4.367654000000073], [111.43879800000008, 4.367695000000083], [111.43902400000013, 4.367863999999997], [111.43896599999994, 4.367908000000114], [111.438853, 4.367908000000114], [111.43879800000008, 4.367949000000124], [111.43902400000013, 4.368118000000095], [111.43896599999994, 4.368161999999984], [111.438853, 4.368161999999984], [111.43879800000008, 4.368204000000105], [111.438853, 4.368245000000115], [111.43902400000013, 4.368245000000115], [111.43902400000013, 4.3684579999999755], [111.43891100000002, 4.368543000000045], [111.43891100000002, 4.368628000000001], [111.43879899999996, 4.368712000000016], [111.43879899999996, 4.368882000000042], [111.43868600000008, 4.368966999999998], [111.43902400000013, 4.369221000000039], [111.43896700000005, 4.369265000000098], [111.438741, 4.369265000000098], [111.43868600000008, 4.369305999999938], [111.438741, 4.369346999999948], [111.4388540000001, 4.369346999999948], [111.43891200000007, 4.369389999999953], [111.43879899999996, 4.369475999999963], [111.43891100000002, 4.36956100000009], [111.43879899999996, 4.369645000000105], [111.43880000000007, 4.370833000000005], [111.43885499999999, 4.370874000000015], [111.43891100000002, 4.370832000000121], [111.43891100000002, 4.370746999999994], [111.43896700000005, 4.370703999999989], [111.43902500000002, 4.370746999999994], [111.43902500000002, 4.370960000000025], [111.4385170000001, 4.370960000000025], [111.43846200000002, 4.371001999999976], [111.4385170000001, 4.371042999999986], [111.4389680000001, 4.371042999999986], [111.43902500000002, 4.3710870000000455], [111.4389680000001, 4.371130000000051], [111.43885499999999, 4.371130000000051], [111.43880000000007, 4.371172000000001], [111.43885499999999, 4.371213000000012], [111.43907999999999, 4.371213000000012], [111.43913799999996, 4.371257000000071], [111.43907999999999, 4.371299000000022], [111.43885499999999, 4.371299000000022], [111.43880000000007, 4.371340999999916], [111.43891300000001, 4.371426000000042], [111.43880000000007, 4.371510999999941], [111.43885499999999, 4.371553000000063], [111.4389680000001, 4.371553000000063], [111.43908100000004, 4.371637000000078], [111.43975700000004, 4.371636000000024], [111.43986900000004, 4.371721000000093], [111.44065799999998, 4.371721000000093], [111.4407710000001, 4.371806000000049], [111.44144700000004, 4.371804999999938], [111.4415590000001, 4.3718900000000644], [111.44234799999998, 4.3718900000000644], [111.44246099999992, 4.37197400000008], [111.44324899999992, 4.371973000000025], [111.44336200000004, 4.372058000000095], [111.44415000000004, 4.372058000000095], [111.44426299999998, 4.372143000000051], [111.44493899999998, 4.37214200000011], [111.44505200000009, 4.372227000000066], [111.44584000000009, 4.372227000000066], [111.44589800000011, 4.37226899999996], [111.44572800000009, 4.372397999999976], [111.44482699999992, 4.372399000000087], [111.44471400000003, 4.372483999999986], [111.44392500000009, 4.372483999999986], [111.44381300000009, 4.372568000000001], [111.44302399999998, 4.372569000000112], [111.44291199999992, 4.372654000000011], [111.44234799999998, 4.372654000000011], [111.44223599999998, 4.372739000000138], [111.44167200000004, 4.372740000000022], [111.44155999999998, 4.3728249999999775], [111.44110899999998, 4.3728249999999775], [111.44105400000007, 4.372867000000099], [111.44099699999992, 4.372908999999993], [111.44054599999993, 4.372908999999993], [111.44043299999998, 4.372995000000003], [111.4400950000001, 4.372995000000003], [111.4399830000001, 4.3730800000001295], [111.43964499999998, 4.3730800000001295], [111.43953200000004, 4.373165000000029], [111.43919399999999, 4.373165000000029], [111.43908199999993, 4.3732499999999845], [111.43896900000004, 4.3732499999999845], [111.43891400000007, 4.373290999999995], [111.43902700000001, 4.373376000000064], [111.43896900000004, 4.37342000000001], [111.4388560000001, 4.37342000000001], [111.43880099999996, 4.37346100000002], [111.4388560000001, 4.373503000000142], [111.43902700000001, 4.373503000000142], [111.43902700000001, 4.3736299999999915], [111.43891400000007, 4.373716000000002], [111.43891400000007, 4.373801000000071], [111.43880200000007, 4.373885000000087], [111.43885699999998, 4.373925999999926], [111.43896900000004, 4.373925999999926], [111.43902700000001, 4.3739700000000425], [111.43896900000004, 4.374013000000048], [111.43885699999998, 4.374013000000048], [111.43880200000007, 4.374054999999942], [111.43891500000001, 4.374140000000068], [111.43885699999998, 4.374181999999962], [111.43863200000004, 4.374183000000073], [111.43857700000007, 4.374224000000083], [111.43863200000004, 4.374266000000034], [111.43885699999998, 4.374266000000034], [111.43891500000001, 4.374309000000039], [111.43880200000007, 4.374394000000109], [111.43891500000001, 4.374479000000065], [111.43880200000007, 4.37456300000008], [111.43880299999995, 4.375666000000024], [111.4388580000001, 4.375707999999975], [111.4389700000001, 4.375623000000019], [111.43902800000012, 4.375666000000024], [111.43902800000012, 4.375793000000044], [111.43851999999998, 4.375793999999985], [111.43846500000006, 4.375834999999995], [111.43851999999998, 4.3758770000000595], [111.4389700000001, 4.3758770000000595], [111.43902800000012, 4.375920000000065], [111.43897099999998, 4.37596400000001], [111.43880299999995, 4.37596400000001], [111.43880299999995, 4.376173999999935], [111.43891600000006, 4.376259000000061], [111.4388580000001, 4.37630299999995], [111.4386330000001, 4.37630299999995], [111.438578, 4.376345000000072], [111.4386330000001, 4.376386000000082], [111.4388580000001, 4.376386000000082], [111.43897099999998, 4.376471000000038], [111.44054800000009, 4.376470000000097], [111.44066100000003, 4.376553999999942], [111.44235100000009, 4.376553000000058], [111.44246300000009, 4.376637999999957], [111.44437800000009, 4.376637000000073], [111.44449100000003, 4.376722000000029], [111.44629400000002, 4.376721000000089], [111.44640600000002, 4.376805000000104], [111.44832200000013, 4.37680400000005], [111.44837900000005, 4.376847000000055], [111.44832200000013, 4.376891000000114], [111.44764600000013, 4.376891000000114], [111.44753300000002, 4.37697600000007], [111.44696999999996, 4.3769770000001245], [111.44685700000002, 4.37706200000008], [111.44629400000002, 4.37706200000008], [111.44618100000008, 4.377146000000096], [111.44584299999997, 4.377146000000096], [111.44573100000014, 4.377232000000106], [111.44516700000003, 4.377232000000106], [111.44505499999997, 4.377317000000005], [111.44449200000014, 4.377317000000005], [111.44437900000003, 4.3774020000001315], [111.44392799999997, 4.377403000000015], [111.44381600000014, 4.377487000000087], [111.44325200000003, 4.377487000000087], [111.44313999999997, 4.3775719999999865], [111.44280200000009, 4.377573000000098], [111.44268899999997, 4.377657999999997], [111.44223900000003, 4.377657999999997], [111.44212599999992, 4.377742000000012], [111.44178800000003, 4.377742000000012], [111.44167500000009, 4.3778270000001385], [111.44133700000003, 4.377828000000022], [111.44122499999997, 4.377912999999978], [111.44088700000009, 4.377912999999978], [111.44077399999998, 4.377998000000048], [111.44043600000009, 4.377998000000048], [111.44032400000003, 4.378082000000063], [111.44021099999992, 4.377998000000048], [111.44009799999998, 4.377998000000048], [111.43998599999998, 4.378083000000004], [111.43987300000003, 4.377998999999988], [111.43976000000009, 4.377998999999988], [111.43964800000009, 4.378083000000004], [111.43953499999998, 4.377998999999988], [111.43942200000004, 4.377998999999988], [111.43930999999998, 4.378083000000004], [111.43919700000004, 4.377998999999988], [111.43908399999992, 4.377998999999988], [111.43897200000009, 4.378083000000004], [111.43885899999998, 4.377998999999988], [111.43874600000004, 4.377998999999988], [111.43869100000012, 4.378041000000053], [111.43874600000004, 4.378082000000063], [111.43885899999998, 4.378082000000063], [111.438917, 4.378125000000068], [111.43880400000006, 4.378210000000024], [111.43885899999998, 4.378251999999918], [111.43897200000009, 4.378251000000034], [111.43903000000012, 4.378294999999923], [111.43897200000009, 4.378337999999928], [111.43874699999992, 4.378337999999928], [111.438692, 4.37838000000005], [111.43874699999992, 4.3784220000000005], [111.43885899999998, 4.3784220000000005], [111.438917, 4.378464000000065], [111.43880400000006, 4.378549000000021], [111.438917, 4.3786340000000905], [111.43880500000012, 4.378719000000046], [111.438917, 4.378803000000062], [111.43880500000012, 4.378887999999961], [111.43880500000012, 4.379991000000132], [111.43891800000006, 4.380074999999977], [111.43886000000003, 4.380119000000036], [111.43852199999998, 4.380119000000036], [111.43846700000006, 4.380160999999987], [111.43852199999998, 4.380201999999997], [111.43886000000003, 4.380201999999997], [111.43891800000006, 4.380245000000002], [111.43886000000003, 4.380289000000062], [111.43874800000003, 4.380289000000062], [111.43869300000011, 4.380330000000129], [111.43874800000003, 4.380371000000139], [111.43886000000003, 4.380371000000139], [111.438917, 4.380413999999973], [111.43880600000006, 4.380499999999984], [111.43891800000006, 4.380585000000053], [111.43880600000006, 4.380670000000009], [111.43886099999997, 4.380710000000079], [111.43897299999998, 4.380710000000079], [111.43914400000011, 4.3808389999999235], [111.43914400000011, 4.381093000000021], [111.439031, 4.381178000000091], [111.43908599999992, 4.381220000000042], [111.43919900000003, 4.381134000000031], [111.43953699999992, 4.381134000000031], [111.43964899999997, 4.3810490000000755], [111.43976200000009, 4.381134000000031], [111.43987500000003, 4.3810490000000755], [111.44055099999997, 4.3810490000000755], [111.44066300000003, 4.380964000000006], [111.44077600000014, 4.381048000000021], [111.44088900000008, 4.380964000000006], [111.44224100000002, 4.380963000000065], [111.44235300000008, 4.381048000000021], [111.44325400000002, 4.3810470000000805], [111.44336700000014, 4.381132000000036], [111.44415600000002, 4.381130999999925], [111.44426900000013, 4.381216000000052], [111.44505700000013, 4.381216000000052], [111.44517000000008, 4.381300999999951], [111.44584600000007, 4.381300999999951], [111.44595800000008, 4.381385000000023], [111.44663400000007, 4.381384000000082], [111.44674700000002, 4.381469000000038], [111.44753600000007, 4.381469000000038], [111.44764800000013, 4.381554000000108], [111.44776100000007, 4.381554000000108], [111.44787400000001, 4.381469000000038], [111.44790100000012, 4.381489000000101], [111.44798600000001, 4.3815530000000535], [111.44843700000001, 4.3815530000000535], [111.44854999999995, 4.381637999999953], [111.44917100000004, 4.381637999999953], [111.44917100000004, 4.381809000000089], [111.44888800000007, 4.381809000000089], [111.44877500000013, 4.381893999999988], [111.44821200000007, 4.381893999999988], [111.44809900000013, 4.381979000000115], [111.44753600000007, 4.381979000000115], [111.44742299999996, 4.382064000000071], [111.44697300000007, 4.382064000000071], [111.44686000000013, 4.38214900000014], [111.44629700000007, 4.382150000000081], [111.44618400000013, 4.38223499999998], [111.44584600000007, 4.38223499999998], [111.44573400000002, 4.382318999999995], [111.44528300000002, 4.382320000000107], [111.44517000000008, 4.382405000000006], [111.44460700000002, 4.382405000000006], [111.44449500000002, 4.382490000000132], [111.44404400000002, 4.382490000000132], [111.44393100000008, 4.382575000000031], [111.44348100000013, 4.382575999999972], [111.44336800000002, 4.382659999999987], [111.44303000000014, 4.382659999999987], [111.44291800000008, 4.382745000000057], [111.43874899999992, 4.382747999999992], [111.438694, 4.3827890000000025], [111.43874899999992, 4.382831000000067], [111.43897499999997, 4.382831000000067], [111.43903200000005, 4.382874000000072], [111.43897499999997, 4.382918000000018], [111.43886200000003, 4.382918000000018], [111.43880700000011, 4.382957999999917], [111.43886200000003, 4.383000000000038], [111.43897499999997, 4.383000000000038], [111.43903200000005, 4.383043000000043], [111.43897499999997, 4.383086999999932], [111.43874899999992, 4.383086999999932], [111.438694, 4.383129000000054], [111.43874899999992, 4.383170000000064], [111.43886200000003, 4.383170000000064], [111.43891899999994, 4.383213000000069], [111.43880700000011, 4.383298000000025], [111.43892000000005, 4.383383000000094], [111.43880700000011, 4.38346800000005], [111.43892000000005, 4.383552999999949], [111.43880700000011, 4.383636999999965], [111.438808, 4.384783000000141], [111.43852500000003, 4.384783000000141], [111.43847000000011, 4.384825000000035], [111.43863799999997, 4.384951000000001], [111.43886300000014, 4.384950000000117], [111.43892099999994, 4.384994000000006], [111.43886300000014, 4.385037000000011], [111.43875100000008, 4.385037000000011], [111.438696, 4.3850790000001325], [111.43875100000008, 4.3851210000000265], [111.43886300000014, 4.385119999999972], [111.43892099999994, 4.385164000000032], [111.438808, 4.385248000000047], [111.43892099999994, 4.385333000000003], [111.438808, 4.385418000000072], [111.43886300000014, 4.385460000000023], [111.43903400000005, 4.385460000000023], [111.43903400000005, 4.3862660000000915], [111.43892200000005, 4.386350999999991], [111.43892200000005, 4.386436000000117], [111.4388090000001, 4.386520000000132], [111.43892200000005, 4.386605000000088], [111.43892200000005, 4.386859000000129], [111.4388090000001, 4.386944000000028], [111.43892200000005, 4.387028999999984], [111.43892200000005, 4.3871140000001105], [111.4388090000001, 4.38719900000001], [111.43888100000004, 4.387253000000044], [111.43892200000005, 4.387283000000025], [111.43892200000005, 4.387538000000006], [111.43880999999999, 4.387623000000076], [111.43880999999999, 4.387792999999931], [111.43892299999993, 4.387877000000003], [111.43892299999993, 4.387962000000073], [111.43880999999999, 4.388047000000029], [111.43880999999999, 4.388132000000098], [111.43892299999993, 4.388215999999943], [111.43880999999999, 4.3883010000000695], [111.43880999999999, 4.388430000000085], [111.43863999999996, 4.388430000000085], [111.43858500000005, 4.388471000000095], [111.43863999999996, 4.388512000000105], [111.43886500000013, 4.388512000000105], [111.43892299999993, 4.38855500000011], [111.43880999999999, 4.388641000000121], [111.43886700000013, 4.388683000000071], [111.43892200000005, 4.388725000000136], [111.43880999999999, 4.388810000000092], [111.4388110000001, 4.389786000000015], [111.43864100000008, 4.389786000000015], [111.43858599999993, 4.389828000000136], [111.43864100000008, 4.389868999999976], [111.4388110000001, 4.389868999999976], [111.4388110000001, 4.390083000000061], [111.43892400000004, 4.390167000000076], [111.43886600000002, 4.390210000000081], [111.43864100000008, 4.390210000000081], [111.43858599999993, 4.390252000000032], [111.43864100000008, 4.390293000000042], [111.43886600000002, 4.390293000000042], [111.43892400000004, 4.390336999999931], [111.43886600000002, 4.3903799999999364], [111.43875400000002, 4.3903799999999364], [111.43869900000004, 4.390420999999947], [111.43875400000002, 4.390463000000068], [111.43920400000007, 4.390462000000014], [111.4392620000001, 4.390506000000073], [111.43920400000007, 4.390549000000078], [111.43886600000002, 4.390549000000078], [111.4388110000001, 4.390591000000029], [111.43886600000002, 4.3906330000000935], [111.43920400000007, 4.390632000000039], [111.4392620000001, 4.390676000000099], [111.43920400000007, 4.390718000000049], [111.43886600000002, 4.390718000000049], [111.43881199999998, 4.390760000000114], [111.43886700000013, 4.390802000000065], [111.44269700000012, 4.390798999999959], [111.44281000000001, 4.390884000000085], [111.44438700000012, 4.390883000000031], [111.44444499999997, 4.39092700000009], [111.44438700000012, 4.390970000000095], [111.44337300000007, 4.390970999999979], [111.44325999999995, 4.391055000000051], [111.44247200000012, 4.3910560000001055], [111.44235900000001, 4.3911410000000615], [111.44168300000007, 4.3911410000000615], [111.44157100000001, 4.391226000000131], [111.44100700000007, 4.391227000000072], [111.44089500000001, 4.391312000000141], [111.44033100000007, 4.391312000000141], [111.44021900000007, 4.391395999999986], [111.43976800000007, 4.391395999999986], [111.43965600000001, 4.391481999999996], [111.43920500000002, 4.391481999999996], [111.43909200000007, 4.391567000000123], [111.4389250000001, 4.391567000000123], [111.4389250000001, 4.391693999999973], [111.43881199999998, 4.391777999999988], [111.4389250000001, 4.391863000000114], [111.4389250000001, 4.392116999999985], [111.43881199999998, 4.392202000000054], [111.4389250000001, 4.39228700000001], [111.4389250000001, 4.392626000000007], [111.4388130000001, 4.392711000000077], [111.43886900000007, 4.392753000000027], [111.43892400000004, 4.392795000000092], [111.4388130000001, 4.392881000000102], [111.4388130000001, 4.392966000000058], [111.43892600000004, 4.393050000000073], [111.4388130000001, 4.3931349999999725], [111.43892600000004, 4.393220000000099], [111.43886800000001, 4.393263000000104], [111.43864300000007, 4.393263000000104], [111.43858799999992, 4.393305000000055], [111.43864300000007, 4.393347000000119], [111.43886800000001, 4.393346000000065], [111.43892600000004, 4.39338900000007], [111.4388130000001, 4.39347400000014], [111.43892600000004, 4.393559000000096], [111.4388130000001, 4.393643999999995], [111.43881399999998, 4.394619000000034], [111.43864300000007, 4.394619000000034], [111.43858799999992, 4.394660999999985], [111.43864400000012, 4.3947030000000495], [111.43881399999998, 4.3947030000000495], [111.43881399999998, 4.394831000000011], [111.43892700000009, 4.39491600000008], [111.43886900000007, 4.394959000000085], [111.43864400000012, 4.394959000000085], [111.43858900000004, 4.394999999999925], [111.43864400000012, 4.395042000000046], [111.43886900000007, 4.395042000000046], [111.43892700000009, 4.395085000000051], [111.43886900000007, 4.39512899999994], [111.43875599999996, 4.39512899999994], [111.43870100000004, 4.3951699999999505], [111.43875599999996, 4.395212000000072], [111.43920700000001, 4.395212000000072], [111.43926499999998, 4.395255000000077], [111.43920700000001, 4.395298000000082], [111.43886900000007, 4.395298000000082], [111.43881399999998, 4.395339000000092], [111.43886900000007, 4.395381000000043], [111.43909499999995, 4.395381000000043], [111.43915200000004, 4.395424000000048], [111.43909499999995, 4.395468000000108], [111.43886900000007, 4.395468000000108], [111.43881399999998, 4.395509000000118], [111.43886900000007, 4.395551000000069], [111.43920700000001, 4.395551000000069], [111.43932000000012, 4.395635000000084], [111.44112300000006, 4.395633999999973], [111.44123500000012, 4.395719000000099], [111.44337599999994, 4.395718000000045], [111.44348900000006, 4.3958030000001145], [111.445742, 4.3958010000001195], [111.445854, 4.3958860000000755], [111.44833299999993, 4.395884999999964], [111.44844600000005, 4.39596899999998], [111.44929200000007, 4.395968000000096], [111.44929200000007, 4.396140000000116], [111.44878399999999, 4.396140000000116], [111.44867100000005, 4.396225000000072], [111.44810799999999, 4.396225000000072], [111.44799500000005, 4.396310000000142], [111.44765699999999, 4.396310000000142], [111.44754499999993, 4.396395000000098], [111.446981, 4.3963959999999815], [111.44686899999999, 4.396481000000108], [111.44641799999994, 4.396481000000108], [111.446305, 4.396565000000123], [111.44585500000011, 4.396566000000007], [111.445742, 4.3966510000001335], [111.44529200000005, 4.3966510000001335], [111.44517900000011, 4.396736000000033], [111.44484100000005, 4.396736000000033], [111.44472800000011, 4.3968209999999885], [111.44439, 4.396822000000043], [111.444278, 4.396906000000058], [111.443827, 4.396906000000058], [111.44371499999994, 4.396991000000014], [111.44348900000006, 4.396991000000014], [111.44337700000005, 4.3970760000001405], [111.443039, 4.397077000000024], [111.44292600000006, 4.397161999999923], [111.44270100000006, 4.397161999999923], [111.44258799999994, 4.3972459999999955], [111.442363, 4.3972459999999955], [111.44225000000006, 4.397331000000065], [111.44202500000011, 4.397331000000065], [111.441912, 4.397416000000021], [111.44188399999996, 4.397416000000021], [111.44186400000012, 4.397417000000075], [111.44179999999994, 4.397417000000075], [111.441687, 4.397502000000031], [111.44146200000006, 4.397502000000031], [111.44134900000012, 4.397586000000047], [111.441236, 4.397586000000047], [111.441124, 4.397670999999946], [111.44089800000012, 4.397670999999946], [111.44078600000006, 4.397756000000072], [111.43887100000006, 4.397758000000067], [111.43881599999997, 4.397799000000077], [111.43887100000006, 4.397840999999971], [111.43909600000006, 4.397840999999971], [111.43915400000003, 4.397883000000093], [111.43909600000006, 4.3979269999999815], [111.43898300000012, 4.3979269999999815], [111.43875799999995, 4.398097000000064], [111.43864500000001, 4.398097000000064], [111.43859100000003, 4.398139000000128], [111.43864600000012, 4.3981800000001385], [111.43892900000009, 4.3981800000001385], [111.43892900000009, 4.398351000000105], [111.43875799999995, 4.398351000000105], [111.43859100000003, 4.398478000000125], [111.43864600000012, 4.398519000000135], [111.43875799999995, 4.398434000000009], [111.43881599999997, 4.398478000000125], [111.43881700000003, 4.399538000000064], [111.43864600000012, 4.399538000000064], [111.43859100000003, 4.3995800000000145], [111.43864600000012, 4.399621000000025], [111.43881700000003, 4.399621000000025], [111.43881700000003, 4.39975000000004], [111.43892999999997, 4.399834000000055], [111.438872, 4.39987700000006], [111.438647, 4.39987700000006], [111.43859200000009, 4.399918999999954], [111.438647, 4.399960000000021], [111.438872, 4.399960000000021], [111.43892999999997, 4.400004000000081], [111.43881700000003, 4.400089000000037], [111.438872, 4.400130000000047], [111.43898500000012, 4.400130000000047], [111.43904200000003, 4.400173000000052], [111.43898500000012, 4.400216000000057], [111.438872, 4.400216000000057], [111.43881700000003, 4.400258000000122], [111.43892999999997, 4.400343000000078], [111.43881700000003, 4.400427999999977], [111.43892999999997, 4.400511999999992], [111.43892999999997, 4.4007669999999735], [111.43881700000003, 4.400850999999989], [111.43892999999997, 4.400936000000115], [111.43892999999997, 4.401021000000014], [111.43881800000014, 4.4011070000000245], [111.43892999999997, 4.40119100000004], [111.43892999999997, 4.401361000000122], [111.43881800000014, 4.4014450000001375], [111.43892999999997, 4.401530000000037], [111.43893100000008, 4.401784000000077], [111.43881800000014, 4.401869000000033], [111.43893100000008, 4.401953999999932], [111.43893100000008, 4.402123000000074], [111.43881800000014, 4.40220800000003], [111.43881800000014, 4.4022930000001], [111.43893100000008, 4.402378000000056], [111.43881800000014, 4.402462999999955], [111.43881800000014, 4.402591000000086], [111.43864800000011, 4.402591000000086], [111.43859299999997, 4.40263299999998], [111.43864800000011, 4.402674000000047], [111.43887300000006, 4.402674000000047], [111.43893100000008, 4.402718000000107], [111.43881900000002, 4.402802000000122], [111.43893100000008, 4.402887000000078], [111.43881900000002, 4.402971999999977], [111.43881900000002, 4.404200000000003], [111.43898700000011, 4.404200000000003], [111.43904500000008, 4.404244000000062], [111.43898700000011, 4.404287000000068], [111.438649, 4.404287000000068], [111.43859400000008, 4.404329000000018], [111.438649, 4.404371000000083], [111.43898700000011, 4.4043700000000285], [111.43904500000008, 4.404413000000034], [111.43898700000011, 4.404456000000039], [111.43887500000005, 4.404456000000039], [111.43882000000013, 4.404497999999933], [111.43887500000005, 4.404540000000054], [111.4391, 4.404540000000054], [111.43915800000002, 4.404583000000059], [111.4391, 4.404626000000064], [111.43887500000005, 4.404626999999948], [111.43882000000013, 4.404667999999958], [111.43887500000005, 4.404709000000025], [111.4391, 4.404709000000025], [111.43915800000002, 4.40475200000003], [111.4391, 4.40479600000009], [111.43887500000005, 4.40479600000009], [111.43882000000013, 4.4048370000001], [111.43887500000005, 4.404879000000051], [111.4463100000001, 4.40487399999995], [111.44642300000004, 4.404789000000051], [111.44653599999992, 4.404789000000051], [111.44664799999998, 4.40487399999995], [111.4467610000001, 4.40487399999995], [111.44687400000004, 4.404789000000051], [111.44698600000004, 4.40487399999995], [111.44941000000006, 4.404873000000066], [111.44941000000006, 4.405509000000109], [111.44924000000003, 4.40563700000007], [111.44856400000003, 4.405638000000124], [111.44845099999992, 4.40572300000008], [111.44777600000003, 4.40572300000008], [111.44766299999992, 4.405807999999979], [111.44687400000004, 4.40580900000009], [111.44676199999998, 4.405893999999989], [111.44574799999992, 4.405893999999989], [111.44563499999998, 4.405979000000116], [111.44439599999998, 4.405979000000116], [111.44428300000004, 4.406064000000015], [111.44000200000005, 4.406067000000121], [111.43988900000011, 4.4059819999999945], [111.43893300000008, 4.405983000000049], [111.43893300000008, 4.406109000000015], [111.43882100000002, 4.406194000000141], [111.43882100000002, 4.4062790000000405], [111.43893300000008, 4.406363000000056], [111.43893400000013, 4.406661000000042], [111.43876300000005, 4.406661000000042], [111.43870800000008, 4.406702999999936], [111.43876300000005, 4.406744000000003], [111.43887599999994, 4.406744000000003], [111.43893400000013, 4.406788000000063], [111.43882100000002, 4.406873000000019], [111.43893400000013, 4.406957000000034], [111.43887599999994, 4.407000000000039], [111.438651, 4.407000000000039], [111.43859600000008, 4.407042000000104], [111.438651, 4.407084000000054], [111.43887599999994, 4.407084000000054], [111.43893400000013, 4.4071270000000595], [111.43882100000002, 4.407211999999959], [111.43893400000013, 4.407295999999974], [111.43882100000002, 4.4073810000001], [111.43882200000013, 4.408398999999974], [111.4387640000001, 4.4084419999999795], [111.438651, 4.408357000000024], [111.43859699999996, 4.408398999999974], [111.43882200000013, 4.408569], [111.43882200000013, 4.408653000000015], [111.43893500000007, 4.408738000000142], [111.43887700000005, 4.408782000000031], [111.4386520000001, 4.408782000000031], [111.43859699999996, 4.408823000000041], [111.4386520000001, 4.408864999999992], [111.43887700000005, 4.408864999999992], [111.43893500000007, 4.408907000000056], [111.43887700000005, 4.408951000000002], [111.43876499999999, 4.408951000000002], [111.43871000000007, 4.408992000000012], [111.43876499999999, 4.4090340000000765], [111.43898999999999, 4.4090340000000765], [111.43904799999996, 4.409077000000082], [111.43898999999999, 4.409121000000027], [111.43887700000005, 4.409121000000027], [111.43882200000013, 4.4091620000000376], [111.43887700000005, 4.4092039999999315], [111.43898999999999, 4.4092039999999315], [111.43904799999996, 4.409246000000053], [111.43898999999999, 4.409289999999942], [111.43876499999999, 4.409289999999942], [111.43871000000007, 4.409332000000063], [111.43876499999999, 4.409373000000073], [111.43898999999999, 4.409373000000073], [111.4391030000001, 4.409458000000029], [111.43927300000013, 4.409458000000029], [111.43927300000013, 4.40967100000006], [111.43916100000007, 4.4097560000001295], [111.43916100000007, 4.409968000000106], [111.43898999999999, 4.409968000000106], [111.43893500000007, 4.41001], [111.43898999999999, 4.410052000000121], [111.4391030000001, 4.410052000000121], [111.43916100000007, 4.410095000000126], [111.4391030000001, 4.410138000000131], [111.43899100000004, 4.410138000000131], [111.43893600000013, 4.410180000000082], [111.43899100000004, 4.410221999999976], [111.43916100000007, 4.410221999999976], [111.43916100000007, 4.410562000000027], [111.43899100000004, 4.410562000000027], [111.43893600000013, 4.410603000000037], [111.43899100000004, 4.410644999999988], [111.43916100000007, 4.410644999999988], [111.43916100000007, 4.41077300000012], [111.43904900000007, 4.410858000000019], [111.43916100000007, 4.410942999999975], [111.43893600000013, 4.411113], [111.43899100000004, 4.4111540000000105], [111.43910399999999, 4.4110690000000545], [111.43916100000007, 4.411113], [111.43916100000007, 4.411197000000016], [111.43904900000007, 4.411282000000085], [111.43904900000007, 4.411410000000046], [111.43887900000004, 4.411410000000046], [111.43882400000012, 4.41145199999994], [111.43887900000004, 4.4114940000000615], [111.43899100000004, 4.4114940000000615], [111.43910399999999, 4.411408999999935], [111.43916200000001, 4.41145199999994], [111.43916200000001, 4.411706000000038], [111.43904900000007, 4.4117910000001075], [111.43904900000007, 4.4119190000000685], [111.43887900000004, 4.4119190000000685], [111.43882400000012, 4.4119609999999625], [111.43899199999998, 4.412087000000099], [111.43910399999999, 4.412001999999973], [111.43916200000001, 4.412044999999978], [111.43916200000001, 4.412173000000109], [111.43887900000004, 4.412173000000109], [111.43882400000012, 4.41221500000006], [111.43887900000004, 4.41225600000007], [111.4392170000001, 4.41225600000007], [111.43933000000004, 4.412171000000114], [111.44000600000004, 4.412171000000114], [111.44011800000004, 4.412086000000045], [111.44090699999998, 4.412086000000045], [111.4410200000001, 4.412001000000089], [111.44169600000004, 4.412000000000035], [111.4418080000001, 4.411915000000079], [111.44270900000004, 4.411915000000079], [111.44282199999998, 4.411831000000063], [111.44372300000009, 4.411829999999952], [111.44383600000003, 4.411745000000053], [111.44710300000014, 4.411743000000058], [111.44721600000008, 4.411828000000014], [111.44834199999997, 4.411827000000073], [111.44845500000008, 4.411911000000089], [111.44930199999999, 4.411911000000089], [111.44930199999999, 4.412166999999954], [111.44879300000002, 4.412166999999954], [111.44868100000014, 4.41225200000008], [111.44777900000014, 4.412252999999964], [111.44766700000008, 4.412338000000091], [111.44676600000014, 4.412338000000091], [111.44665300000003, 4.412424000000101], [111.44563899999997, 4.412424000000101], [111.44552600000003, 4.412508000000116], [111.44451199999997, 4.412509], [111.44439999999997, 4.4125940000001265], [111.44327299999998, 4.41259500000001], [111.44316099999992, 4.412680000000137], [111.44203399999998, 4.4126810000000205], [111.44192100000004, 4.412765000000093], [111.44068199999998, 4.412765000000093], [111.44056900000004, 4.412851000000103], [111.43933000000004, 4.412851000000103], [111.4392170000001, 4.412936000000002], [111.43887999999993, 4.412937000000113], [111.43882500000001, 4.412978000000123], [111.43887999999993, 4.413020000000017], [111.4391050000001, 4.413020000000017], [111.43916300000006, 4.413063000000022], [111.4391050000001, 4.4131060000000275], [111.43887999999993, 4.4131060000000275], [111.43882500000001, 4.413147000000038], [111.43887999999993, 4.4131889999999885], [111.4391050000001, 4.4131889999999885], [111.43916300000006, 4.413231999999994], [111.4391050000001, 4.413276000000053], [111.43854200000004, 4.413276000000053], [111.43848700000012, 4.413318000000004], [111.43854200000004, 4.413359000000014], [111.43887999999993, 4.413359000000014], [111.43893700000001, 4.413402000000019], [111.43887999999993, 4.413445000000024], [111.43876699999998, 4.413445000000024], [111.43871200000007, 4.413486999999918], [111.43876699999998, 4.413527999999985], [111.43887999999993, 4.413527999999985], [111.43893800000012, 4.413572000000045], [111.43882500000001, 4.413657000000001], [111.43882600000006, 4.41471700000011], [111.43865499999998, 4.41471700000011], [111.43860000000006, 4.414759000000004], [111.43865499999998, 4.414800000000071], [111.43882600000006, 4.414800000000071], [111.43882600000006, 4.414929000000086], [111.43893800000012, 4.415013999999985], [111.43888100000004, 4.4150560000001065], [111.43865499999998, 4.4150560000001065], [111.43860000000006, 4.415098], [111.43865499999998, 4.415140000000122], [111.43888100000004, 4.415139000000011], [111.438939, 4.415183000000127], [111.43882600000006, 4.415268000000026], [111.43888100000004, 4.415309000000036], [111.43910599999998, 4.415309000000036], [111.439164, 4.415352999999982], [111.43910599999998, 4.415395000000046], [111.43888100000004, 4.415395000000046], [111.43882600000006, 4.415436999999997], [111.43888100000004, 4.4154790000001185], [111.4392190000001, 4.415478000000007], [111.43927700000012, 4.415522000000124], [111.4392190000001, 4.415565000000129], [111.43888100000004, 4.415565000000129], [111.43882600000006, 4.415607000000023], [111.43888100000004, 4.4156489999999735], [111.44090899999998, 4.415648000000033], [111.44096699999994, 4.415691000000038], [111.44090899999998, 4.415732999999989], [111.44068399999998, 4.415734000000043], [111.44057100000003, 4.415818999999999], [111.44034600000009, 4.415818999999999], [111.44023299999998, 4.415904000000069], [111.44012099999992, 4.415904000000069], [111.44000800000003, 4.415989000000025], [111.43978300000003, 4.415989000000025], [111.43966999999992, 4.41607300000004], [111.43955699999998, 4.416073999999924], [111.43944499999998, 4.41615900000005], [111.43933200000004, 4.41615900000005], [111.439164, 4.416285000000016], [111.439276, 4.4163690000000315], [111.43921999999998, 4.416413000000091], [111.43910700000009, 4.416413000000091], [111.438939, 4.416540000000111], [111.43899399999998, 4.416580999999951], [111.43910700000009, 4.416496000000052], [111.43927700000012, 4.416496000000052], [111.43927700000012, 4.416625000000067], [111.43916500000006, 4.416709000000083], [111.43916500000006, 4.416836999999987], [111.43899399999998, 4.416836999999987], [111.43894000000012, 4.416879000000108], [111.43899500000003, 4.416921000000059], [111.43910700000009, 4.416921000000059], [111.43921999999998, 4.416835000000049], [111.43927700000012, 4.416879000000108], [111.439278, 4.416964000000064], [111.43910700000009, 4.417092000000139], [111.43888200000009, 4.417092000000139], [111.438827, 4.417132999999978], [111.43894000000012, 4.417218000000105], [111.438827, 4.417303000000004], [111.43894000000012, 4.417387000000019], [111.43888200000009, 4.4174310000001356], [111.43865699999998, 4.4174310000001356], [111.438602, 4.4174730000000295], [111.43865699999998, 4.4175140000000965], [111.43888200000009, 4.4175140000000965], [111.438939, 4.417557000000102], [111.438827, 4.417643000000112], [111.43894000000012, 4.417727000000127], [111.438827, 4.417812000000026], [111.43882800000006, 4.418873000000076], [111.43865800000003, 4.418873000000076], [111.43860300000011, 4.41891499999997], [111.43865800000003, 4.418956000000037], [111.43882800000006, 4.418956000000037], [111.43882800000006, 4.419084000000112], [111.438941, 4.419169000000068], [111.43888300000003, 4.419212000000073], [111.43865800000003, 4.419212000000073], [111.43860300000011, 4.419254000000137], [111.43865800000003, 4.419294999999977], [111.43888300000003, 4.419294999999977], [111.438941, 4.419337999999982], [111.43882800000006, 4.4194230000001085], [111.43888300000003, 4.419465000000002], [111.43910900000003, 4.419464000000119], [111.439166, 4.4195080000000075], [111.43910900000003, 4.419551000000013], [111.43888300000003, 4.419551000000013], [111.43882800000006, 4.419593000000134], [111.43888300000003, 4.419633999999974], [111.43910900000003, 4.419633999999974], [111.439166, 4.419676999999979], [111.43910900000003, 4.419719999999984], [111.43888300000003, 4.419721000000095], [111.438829, 4.419762000000105], [111.43888400000009, 4.419803999999999], [111.44778400000001, 4.419798000000071], [111.44789700000013, 4.419883000000141], [111.44941900000009, 4.4198820000000865], [111.44941900000009, 4.420223000000021], [111.44868600000001, 4.420223000000021], [111.44857300000007, 4.420307999999977], [111.44767199999995, 4.420309000000032], [111.44755900000001, 4.4203939999999875], [111.44688300000007, 4.4203939999999875], [111.44677000000013, 4.420479000000057], [111.44598200000013, 4.420479999999998], [111.44586900000002, 4.420564000000013], [111.44519300000002, 4.420564000000013], [111.44508100000002, 4.420650000000023], [111.44451700000008, 4.420650000000023], [111.44440500000002, 4.420734999999922], [111.44395400000002, 4.420734999999922], [111.44384100000008, 4.420820000000049], [111.44339100000013, 4.420820999999933], [111.44327800000002, 4.420905000000005], [111.44282700000002, 4.420905000000005], [111.44271499999996, 4.420990000000074], [111.44226399999997, 4.420990000000074], [111.44215200000014, 4.421076000000085], [111.44170100000014, 4.421076000000085], [111.44158800000002, 4.4211610000000405], [111.44125000000008, 4.4211610000000405], [111.44113800000008, 4.421245000000056], [111.44091200000003, 4.421245000000056], [111.44079999999997, 4.421331000000066], [111.44046200000008, 4.421331000000066], [111.44034899999997, 4.421415999999965], [111.44012400000003, 4.421415999999965], [111.44001100000008, 4.421501000000092], [111.43978600000014, 4.421501000000092], [111.43967300000003, 4.421585000000107], [111.43956100000014, 4.421585999999991], [111.43944800000003, 4.421671000000117], [111.43922300000008, 4.421671000000117], [111.43905500000005, 4.421798000000138], [111.43916799999994, 4.421881999999982], [111.43911000000014, 4.4219249999999874], [111.43888499999997, 4.4219249999999874], [111.43883000000005, 4.421967000000109], [111.43888499999997, 4.422008000000119], [111.43916799999994, 4.422008000000119], [111.43916799999994, 4.422137000000134], [111.43905500000005, 4.422220999999979], [111.43916799999994, 4.4223060000001055], [111.43911000000014, 4.422349000000111], [111.43899800000008, 4.422349000000111], [111.438943, 4.422391000000005], [111.43916799999994, 4.422559999999976], [111.43911100000003, 4.422604000000035], [111.43899800000008, 4.422604000000035], [111.438943, 4.4226450000000455], [111.43899800000008, 4.422686999999996], [111.43916799999994, 4.422686999999996], [111.43916799999994, 4.422984000000042], [111.438943, 4.423155000000008], [111.43899800000008, 4.423196000000019], [111.43911100000003, 4.423111000000063], [111.43916900000005, 4.423154000000068], [111.43916900000005, 4.423452000000054], [111.43899800000008, 4.423452000000054], [111.438943, 4.423493999999948], [111.43899800000008, 4.423534000000075], [111.43916900000005, 4.423534000000075], [111.43916900000005, 4.423706000000095], [111.43877300000014, 4.423706000000095], [111.43871800000005, 4.423748000000046], [111.43877300000014, 4.4237900000001105], [111.43899900000002, 4.4237900000001105], [111.43905600000011, 4.423832000000061], [111.4389440000001, 4.423917000000131], [111.43905600000011, 4.424002000000087], [111.43899900000002, 4.424045999999976], [111.43877300000014, 4.424045999999976], [111.43871800000005, 4.424086999999986], [111.43877300000014, 4.424129000000107], [111.43899900000002, 4.424129000000107], [111.43905600000011, 4.424171000000001], [111.43899900000002, 4.4242150000001175], [111.43888600000008, 4.4242150000001175], [111.438831, 4.424256000000128], [111.43888600000008, 4.4242980000000784], [111.43899900000002, 4.4242980000000784], [111.43905699999999, 4.424341000000084], [111.43899900000002, 4.4243849999999725], [111.438831, 4.4243849999999725], [111.43883200000005, 4.425741999999957], [111.43854900000008, 4.425741999999957], [111.43849399999999, 4.425783000000024], [111.43854900000008, 4.425824000000034], [111.43877400000002, 4.425824000000034], [111.43883200000005, 4.425868000000094], [111.43877400000002, 4.425911000000099], [111.43866200000002, 4.425911000000099], [111.4386070000001, 4.4259530000000495], [111.43866200000002, 4.42599400000006], [111.43883200000005, 4.42599400000006], [111.43883299999993, 4.426505000000077], [111.43866200000002, 4.426505000000077], [111.4386070000001, 4.426546000000087], [111.43866200000002, 4.426587999999981], [111.43883299999993, 4.426587999999981], [111.43883299999993, 4.428113999999937], [111.43900100000002, 4.428113999999937], [111.43905899999999, 4.428156999999942], [111.43900100000002, 4.428201000000058], [111.43866300000008, 4.428201000000058], [111.43860799999999, 4.428242000000068], [111.43866300000008, 4.428283999999962], [111.43900100000002, 4.428283999999962], [111.43905899999999, 4.4283269999999675], [111.43900100000002, 4.428369999999973], [111.43888899999996, 4.428369999999973], [111.43883400000004, 4.428412000000094], [111.43888899999996, 4.428453000000104], [111.43911400000013, 4.428453000000104], [111.43917199999993, 4.428496000000109], [111.43911400000013, 4.428540000000055], [111.43888899999996, 4.428540000000055], [111.43883400000004, 4.4285820000001195], [111.43888899999996, 4.42862300000013], [111.43911400000013, 4.42862300000013], [111.43917199999993, 4.428666000000135], [111.43911400000013, 4.42870900000014], [111.43888899999996, 4.42870900000014], [111.43883400000004, 4.428751000000091], [111.43888899999996, 4.428792000000101], [111.4398480000001, 4.428792000000101], [111.4398480000001, 4.429259000000002], [111.43973600000004, 4.429344000000128], [111.4398480000001, 4.429429000000027], [111.43973600000004, 4.429513999999983], [111.4398480000001, 4.429599000000053], [111.43984899999998, 4.43015100000008], [111.43956600000001, 4.43015100000008], [111.43945300000007, 4.430236000000036], [111.43911500000002, 4.430236000000036], [111.43883499999993, 4.430447000000072], [111.43883499999993, 4.430660000000103], [111.43866500000007, 4.430660000000103], [111.43860999999998, 4.430701000000113], [111.43883499999993, 4.430870999999968], [111.43883600000004, 4.432356000000084], [111.43866600000001, 4.432356000000084], [111.43861100000004, 4.432398000000035], [111.43866600000001, 4.432439000000045], [111.43883600000004, 4.432439000000045], [111.43883600000004, 4.43260900000007], [111.43900400000007, 4.43260900000007], [111.43906099999998, 4.432651000000021], [111.43900400000007, 4.432695000000081], [111.43889100000013, 4.432695000000081], [111.43883600000004, 4.4327370000000315], [111.43894899999998, 4.432822000000101], [111.43889100000013, 4.432865000000106], [111.43877900000012, 4.432865000000106], [111.43872399999998, 4.432907000000057], [111.43877900000012, 4.432946999999956], [111.43900400000007, 4.432946999999956], [111.4391740000001, 4.433075999999971], [111.43917500000003, 4.434093000000132], [111.43900499999995, 4.434221000000036], [111.43889200000007, 4.434221000000036], [111.43877900000012, 4.434137000000021], [111.43872399999998, 4.434178999999972], [111.43883699999992, 4.434262999999987], [111.43883699999992, 4.434348000000057], [111.43895000000003, 4.434433000000013], [111.43883699999992, 4.434518000000139], [111.43895000000003, 4.434601999999984], [111.43883699999992, 4.434687000000054], [111.43895000000003, 4.4347720000000095], [111.43895000000003, 4.434856000000025], [111.43883699999992, 4.434940999999924], [111.43883800000003, 4.436044000000095], [111.43895099999997, 4.436128999999994], [111.43889300000012, 4.436171999999999], [111.43855500000006, 4.436171999999999], [111.43849999999992, 4.436213000000009], [111.43855500000006, 4.436255000000131], [111.43889300000012, 4.436255000000131], [111.43895099999997, 4.436298000000136], [111.43889300000012, 4.436342000000025], [111.43878100000012, 4.436342000000025], [111.43872599999997, 4.436383000000035], [111.43878100000012, 4.436424999999986], [111.43889300000012, 4.436424999999986], [111.43895099999997, 4.436467999999991], [111.43883800000003, 4.436552000000006], [111.43895099999997, 4.4366370000001325], [111.43889300000012, 4.436681000000021], [111.43878100000012, 4.436681000000021], [111.43872599999997, 4.436722999999972], [111.43878100000012, 4.436763999999982], [111.43895099999997, 4.436763999999982], [111.43895200000003, 4.437994000000117], [111.43883900000009, 4.438079000000073], [111.438896, 4.438122000000078], [111.43895200000003, 4.438163999999972], [111.43895200000003, 4.438333999999998], [111.43872700000009, 4.438503000000139], [111.43884000000003, 4.438588000000095], [111.43884000000003, 4.43875700000001], [111.43872700000009, 4.438842000000136], [111.43895300000014, 4.439011999999991], [111.43884000000003, 4.439096000000006], [111.43895300000014, 4.439181000000133], [111.43884000000003, 4.439266000000032], [111.43884100000008, 4.440242000000126], [111.43866999999995, 4.440243000000066], [111.43861500000003, 4.4402840000000765], [111.43866999999995, 4.4403259999999705], [111.43884100000008, 4.4403259999999705], [111.43884100000008, 4.440582000000006], [111.43855800000011, 4.440582000000006], [111.43850300000003, 4.440624000000128], [111.43855800000011, 4.440665000000138], [111.438896, 4.440665000000138], [111.43895400000002, 4.4407070000000886], [111.438896, 4.4407509999999775], [111.43878300000006, 4.4407509999999775], [111.43872800000014, 4.440793000000099], [111.43878300000006, 4.440834000000109], [111.439121, 4.440834000000109], [111.43917899999997, 4.440877000000114], [111.439121, 4.440921000000003], [111.438896, 4.440921000000003], [111.43884100000008, 4.440963000000124], [111.438896, 4.4410040000001345], [111.43900899999994, 4.4410040000001345], [111.43906600000003, 4.44104700000014], [111.43900899999994, 4.441089999999974], [111.438896, 4.441089999999974], [111.43884100000008, 4.441132000000039], [111.438896, 4.441173000000106], [111.43900899999994, 4.441173000000106], [111.43912200000005, 4.441258000000005], [111.43979800000005, 4.441258000000005], [111.43991000000005, 4.441343000000131], [111.44058600000005, 4.44134200000002], [111.440699, 4.441426000000035], [111.44137499999994, 4.441426000000035], [111.44148800000005, 4.441510999999991], [111.44216400000005, 4.441510999999991], [111.4422760000001, 4.441596000000061], [111.44295200000005, 4.441595000000007], [111.44306499999999, 4.441680000000133], [111.4431780000001, 4.441595000000007], [111.44328999999993, 4.441680000000133], [111.4438540000001, 4.441680000000133], [111.4439660000001, 4.441763999999978], [111.44453000000004, 4.441763000000037], [111.44464299999999, 4.441847999999993], [111.44531899999998, 4.441847999999993], [111.44543099999999, 4.441933000000063], [111.44610699999998, 4.441933000000063], [111.4462200000001, 4.442017000000078], [111.44678299999998, 4.442016000000024], [111.4468960000001, 4.442100999999923], [111.44757200000004, 4.442100999999923], [111.44768499999998, 4.442186000000049], [111.44779700000004, 4.442186000000049], [111.44790999999992, 4.442100999999923], [111.44802300000003, 4.442186000000049], [111.44836099999998, 4.442184999999995], [111.44847299999998, 4.442270000000065], [111.44903699999992, 4.442270000000065], [111.44920699999994, 4.442397000000085], [111.44915000000003, 4.442441000000031], [111.44858600000009, 4.442441000000031], [111.44847400000009, 4.4425260000001], [111.44779800000009, 4.442527000000041], [111.44768499999998, 4.442611000000056], [111.44700899999998, 4.442611000000056], [111.4468960000001, 4.442695999999955], [111.44633300000004, 4.4426970000000665], [111.4462200000001, 4.442781999999966], [111.44565700000004, 4.442781999999966], [111.44554399999993, 4.442867000000092], [111.4449810000001, 4.442867999999976], [111.44486900000004, 4.442951999999991], [111.4443050000001, 4.442951999999991], [111.44419300000004, 4.443037000000118], [111.44362899999993, 4.443038000000001], [111.4435170000001, 4.443123000000128], [111.44317899999999, 4.443123000000128], [111.4430660000001, 4.443208000000084], [111.44261500000005, 4.443208000000084], [111.44250300000004, 4.443292999999983], [111.44205200000005, 4.443292999999983], [111.4419390000001, 4.443378000000109], [111.44148899999999, 4.443378000000109], [111.44137600000005, 4.443463000000008], [111.44081299999999, 4.4434640000001195], [111.44070000000005, 4.443549000000019], [111.44058800000005, 4.4434640000001195], [111.4404750000001, 4.4434640000001195], [111.440362, 4.443549000000019], [111.44024999999993, 4.4434640000001195], [111.44013700000005, 4.4434640000001195], [111.44002400000011, 4.443549000000019], [111.43991200000005, 4.4434640000001195], [111.43979899999994, 4.4434640000001195], [111.439686, 4.443549000000019], [111.439574, 4.4434640000001195], [111.43946100000005, 4.4434640000001195], [111.43934800000011, 4.44355000000013], [111.43923600000011, 4.443465000000003], [111.43878500000005, 4.443465000000003], [111.43873000000013, 4.443507000000125], [111.43878500000005, 4.443548000000135], [111.43901000000005, 4.443548000000135], [111.43906800000002, 4.44359100000014], [111.43901000000005, 4.4436339999999745], [111.438898, 4.4436339999999745], [111.43884300000008, 4.443676000000039], [111.438898, 4.443717000000049], [111.43901000000005, 4.443717000000049], [111.43906700000014, 4.443760999999995], [111.43901000000005, 4.443804], [111.43878500000005, 4.443804], [111.43873000000013, 4.443846000000065], [111.43878500000005, 4.443887000000132], [111.438898, 4.443887000000132], [111.43895500000008, 4.4439310000000205], [111.43884300000008, 4.444015000000036], [111.43884399999996, 4.445456999999976], [111.43895600000002, 4.445542000000103], [111.4388990000001, 4.445583999999997], [111.43856099999999, 4.445585000000108], [111.43850600000007, 4.445626000000118], [111.43856099999999, 4.445668000000012], [111.4388990000001, 4.445668000000012], [111.43895700000007, 4.445711000000017], [111.4388990000001, 4.445754000000022], [111.43867399999993, 4.445755000000133], [111.43861900000002, 4.445795999999973], [111.43867399999993, 4.4458380000000375], [111.4388990000001, 4.4458380000000375], [111.43895700000007, 4.445881000000043], [111.43884399999996, 4.445965000000115], [111.43895700000007, 4.446050000000014], [111.43884399999996, 4.44613500000014], [111.4388990000001, 4.446177000000034], [111.43901200000005, 4.446177000000034], [111.43906900000013, 4.446218999999985], [111.43895700000007, 4.446304000000055], [111.43907000000002, 4.446389000000011], [111.43907000000002, 4.446559000000036], [111.43895700000007, 4.446643999999935], [111.43901200000005, 4.446685000000002], [111.43946300000005, 4.446685000000002], [111.43957500000005, 4.446600000000046], [111.4404770000001, 4.446598999999992], [111.44058899999993, 4.44651499999992], [111.44216699999993, 4.446514000000036], [111.44227899999998, 4.446598000000051], [111.44295499999993, 4.446598000000051], [111.44306800000004, 4.446683000000007], [111.44374400000004, 4.446682000000067], [111.44385699999998, 4.446767000000023], [111.44442000000004, 4.446767000000023], [111.44453299999998, 4.446851999999922], [111.44526700000011, 4.446851999999922], [111.44526700000011, 4.448039999999992], [111.43889999999999, 4.448043999999982], [111.43884500000007, 4.448086000000103], [111.43895800000001, 4.448170000000118], [111.43884500000007, 4.448255000000017], [111.43895800000001, 4.448339999999973], [111.43889999999999, 4.448382999999978], [111.43867500000005, 4.448382999999978], [111.43862000000007, 4.448425000000043], [111.43867500000005, 4.448466999999994], [111.43889999999999, 4.448466999999994], [111.43895800000001, 4.448509000000058], [111.4389010000001, 4.448553000000004], [111.43878799999999, 4.448553000000004], [111.43873300000001, 4.448594000000014], [111.43878799999999, 4.4486360000001355], [111.4389010000001, 4.4486360000001355], [111.43895800000001, 4.448679000000141], [111.43884599999996, 4.44876400000004], [111.43895800000001, 4.448848000000055], [111.43884599999996, 4.448933000000011], [111.43895800000001, 4.4490180000000805], [111.43884599999996, 4.4491030000000364], [111.43895900000007, 4.4491879999999355], [111.43884599999996, 4.449273000000062], [111.43895900000007, 4.449357999999961], [111.43884599999996, 4.4494430000000875], [111.43895900000007, 4.449527000000103], [111.43884599999996, 4.449612000000059], [111.43895900000007, 4.449697000000128], [111.43895900000007, 4.449950999999999], [111.43862100000001, 4.450205000000096], [111.4386760000001, 4.45024699999999], [111.43878900000004, 4.45024699999999], [111.4389010000001, 4.450162000000091], [111.43895900000007, 4.450205000000096], [111.43895900000007, 4.450289999999995], [111.43884700000007, 4.450375000000122], [111.43890199999998, 4.450417000000016], [111.43912699999993, 4.450417000000016], [111.43918500000012, 4.450459000000137], [111.43912699999993, 4.450503000000026], [111.43890199999998, 4.450503000000026], [111.43884700000007, 4.450544999999977], [111.43890199999998, 4.450585999999987], [111.43912699999993, 4.450585999999987], [111.43918500000012, 4.450628999999992], [111.43912699999993, 4.450673000000052], [111.43890199999998, 4.450673000000052], [111.43884700000007, 4.450715000000002], [111.43890199999998, 4.450756000000013], [111.44453499999992, 4.450753000000134], [111.44459300000011, 4.450795000000028], [111.44430999999997, 4.451008999999999], [111.44273300000003, 4.451010000000053], [111.44261999999992, 4.451094000000069], [111.44014099999998, 4.451096000000064], [111.44002899999998, 4.45118100000002], [111.43890199999998, 4.45118100000002], [111.43884700000007, 4.451223000000084], [111.43896000000001, 4.45130800000004], [111.43884700000007, 4.451392999999939], [111.43896000000001, 4.451477000000011], [111.43896000000001, 4.451731000000052], [111.43884700000007, 4.451817000000062], [111.43891899999994, 4.4518710000000965], [111.43896000000001, 4.451901000000078], [111.43896000000001, 4.451987000000088], [111.43884800000012, 4.452071000000103], [111.43896000000001, 4.452156000000059], [111.43884800000012, 4.452241000000129], [111.43884800000012, 4.452580000000125], [111.43896100000006, 4.4526650000000245], [111.43896100000006, 4.452749000000097], [111.43884800000012, 4.452833999999996], [111.43896100000006, 4.452919000000122], [111.43896100000006, 4.453088000000037], [111.43884800000012, 4.4531729999999925], [111.43896000000001, 4.453258000000062], [111.43884800000012, 4.453344000000072], [111.43896100000006, 4.453427999999917], [111.43890300000004, 4.453470999999922], [111.4386780000001, 4.453470999999922], [111.438623, 4.453513000000044], [111.4386780000001, 4.453554000000054], [111.43890300000004, 4.453554000000054], [111.43896100000006, 4.4535979999999995], [111.43890399999998, 4.453641000000005], [111.43879100000004, 4.453641000000005], [111.43873600000012, 4.453682000000015], [111.43879100000004, 4.453724000000079], [111.43890399999998, 4.453723000000025], [111.43896100000006, 4.453767000000084], [111.43884900000006, 4.45385200000004], [111.43884900000006, 4.4543180000000575], [111.43884900000006, 4.4550800000000095], [111.43901700000009, 4.4550800000000095], [111.43907500000006, 4.455124000000126], [111.43901700000009, 4.455167000000131], [111.43867899999998, 4.455167000000131], [111.43862400000006, 4.455209000000025], [111.43867899999998, 4.455250999999976], [111.43901700000009, 4.455250000000035], [111.43907500000006, 4.45529300000004], [111.43901700000009, 4.455336000000045], [111.43890500000003, 4.455336000000045], [111.43885000000012, 4.455377999999996], [111.43890500000003, 4.455420000000117], [111.43901700000009, 4.455420000000117], [111.43907500000006, 4.4554630000001225], [111.43901700000009, 4.455506000000128], [111.43898900000005, 4.455506000000128], [111.43890500000003, 4.455507000000011], [111.43885000000012, 4.455548000000022], [111.43896199999995, 4.455632000000037], [111.43885000000012, 4.455716999999993], [111.43890500000003, 4.455759000000057], [111.43907500000006, 4.455759000000057], [111.43907500000006, 4.4559300000000235], [111.43890500000003, 4.4559300000000235], [111.43885000000012, 4.455971999999917], [111.43890500000003, 4.456012999999928], [111.43907500000006, 4.456012999999928], [111.43907500000006, 4.45626900000002], [111.43890500000003, 4.45626900000002], [111.43885000000012, 4.456311000000085], [111.43890500000003, 4.456352000000095], [111.43901799999998, 4.456352000000095], [111.439076, 4.456396000000041], [111.43896300000006, 4.45648100000011], [111.43901799999998, 4.45652199999995], [111.43913100000009, 4.45652199999995], [111.439188, 4.456566000000066], [111.43913100000009, 4.45660799999996], [111.43890500000003, 4.45660799999996], [111.43885000000012, 4.4566500000000815], [111.43890500000003, 4.4566919999999755], [111.44025700000003, 4.456691000000092], [111.44036999999992, 4.456607000000076], [111.44132900000005, 4.456605999999965], [111.44132900000005, 4.456734000000097], [111.44138399999997, 4.456775000000107], [111.44149700000008, 4.456690000000037], [111.44155400000005, 4.4567330000000425], [111.44155500000011, 4.457157999999993], [111.44161000000003, 4.457199000000003], [111.44166600000005, 4.457157999999993], [111.44166600000005, 4.4570730000000935], [111.44172200000008, 4.457028999999977], [111.44183500000003, 4.457114000000104], [111.44200300000006, 4.456987000000083], [111.44200300000006, 4.456903000000068], [111.44206000000014, 4.456860000000063], [111.442118, 4.456903000000068], [111.442118, 4.456987000000083], [111.44217300000008, 4.457028999999977], [111.44222900000011, 4.456987000000083], [111.44222900000011, 4.456860000000063], [111.44239800000003, 4.456860000000063], [111.44251099999997, 4.456775000000107], [111.44262300000003, 4.456774000000053], [111.44284900000008, 4.456605000000081], [111.44296100000008, 4.456689000000097], [111.44307400000002, 4.456605000000081], [111.44318700000014, 4.456605000000081], [111.44329899999997, 4.456519999999955], [111.44420100000002, 4.456519000000071], [111.44431300000002, 4.456604000000027], [111.44577800000013, 4.4566030000000865], [111.44589100000007, 4.456687000000102], [111.44690500000013, 4.456687000000102], [111.44701800000001, 4.456772000000058], [111.44791899999996, 4.4567709999999465], [111.44803200000007, 4.456856000000073], [111.44870800000007, 4.456856000000073], [111.44882000000013, 4.456940000000088], [111.44944099999998, 4.456939000000034], [111.44944200000003, 4.457661000000087], [111.44955499999998, 4.457745999999986], [111.44955499999998, 4.457959000000017], [111.44780700000013, 4.457960000000128], [111.44769400000001, 4.458045000000027], [111.44758200000001, 4.458045000000027], [111.44746900000007, 4.457960000000128], [111.44735600000013, 4.458045000000027], [111.43890599999997, 4.458050000000071], [111.438851, 4.458092000000022], [111.43896399999994, 4.458176999999921], [111.438851, 4.458260999999993], [111.43896399999994, 4.458346000000063], [111.43890599999997, 4.4583900000000085], [111.43868099999997, 4.4583900000000085], [111.43862600000006, 4.458431000000019], [111.43868099999997, 4.458473000000083], [111.43890599999997, 4.458473000000083], [111.43896399999994, 4.458516000000088], [111.438851, 4.458599999999933], [111.43896399999994, 4.4586850000000595], [111.43885200000011, 4.45877100000007], [111.43885200000011, 4.459831000000008], [111.43868200000009, 4.459831000000008], [111.43862699999994, 4.45987300000013], [111.43868200000009, 4.45991400000014], [111.43885200000011, 4.45991400000014], [111.43885200000011, 4.460042000000044], [111.43896500000005, 4.460127], [111.43890700000003, 4.460170000000005], [111.43868200000009, 4.460170000000005], [111.43862699999994, 4.460212000000126], [111.43868200000009, 4.460253000000137], [111.43890700000003, 4.460253000000137], [111.43896500000005, 4.4602970000000255], [111.43890700000003, 4.460340000000031], [111.43879500000003, 4.460340000000031], [111.43874000000005, 4.460381999999981], [111.43879500000003, 4.460422999999992], [111.43902000000014, 4.460422999999992], [111.439078, 4.460467000000051], [111.43902000000014, 4.460509000000002], [111.43890800000014, 4.460509000000002], [111.438853, 4.460551000000066], [111.43890800000014, 4.4605920000000765], [111.43902000000014, 4.4605920000000765], [111.439078, 4.460636000000022], [111.43902000000014, 4.460679000000027], [111.43879500000003, 4.460679000000027], [111.43874000000005, 4.460720999999921], [111.43879500000003, 4.460763000000043], [111.44803400000006, 4.460757000000058], [111.448147, 4.460671999999988], [111.44825900000006, 4.460757000000058], [111.448372, 4.460757000000058], [111.44848500000012, 4.460671999999988], [111.44899300000003, 4.460671000000048], [111.44899300000003, 4.461521000000062], [111.448823, 4.461521000000062], [111.44871099999995, 4.461605999999961], [111.44848500000012, 4.461605999999961], [111.44837300000006, 4.461691000000087], [111.448035, 4.461691999999971], [111.44792200000006, 4.461775999999986], [111.44769700000006, 4.461775999999986], [111.44758399999995, 4.461861000000113], [111.447359, 4.461861000000113], [111.44724600000006, 4.461946000000069], [111.44566899999995, 4.461947000000123], [111.44555600000007, 4.462032000000079], [111.44228900000007, 4.462034000000017], [111.44217599999996, 4.462118000000089], [111.43992300000008, 4.462120000000027], [111.43981000000014, 4.462204999999983], [111.43890900000002, 4.462204999999983], [111.4388540000001, 4.462247000000104], [111.43890900000002, 4.462288999999998], [111.43913399999997, 4.462288999999998], [111.43919199999999, 4.4623320000000035], [111.43913399999997, 4.462375000000009], [111.43890900000002, 4.46237600000012], [111.4388540000001, 4.46241700000013], [111.43890900000002, 4.46245800000014], [111.43913399999997, 4.46245800000014], [111.43919199999999, 4.462500999999975], [111.43913399999997, 4.462545000000034], [111.43857100000014, 4.462545000000034], [111.43851599999999, 4.462586999999985], [111.43857100000014, 4.462627999999995], [111.43890900000002, 4.462627999999995], [111.43896700000005, 4.462671], [111.43890900000002, 4.46271500000006], [111.43879600000008, 4.46271500000006], [111.438741, 4.46275600000007], [111.43879600000008, 4.462797000000137], [111.43890900000002, 4.462797000000137], [111.43896599999994, 4.462840000000142], [111.4388540000001, 4.462925999999925], [111.43885499999999, 4.464326000000142], [111.43868500000013, 4.464326000000142], [111.43863000000005, 4.464368000000093], [111.43868500000013, 4.464407999999992], [111.43879700000002, 4.464407999999992], [111.43891000000013, 4.464323999999976], [111.43907999999999, 4.464452000000108], [111.43902300000002, 4.464495000000113], [111.43891000000013, 4.464495000000113], [111.43885499999999, 4.464537000000007], [111.4389680000001, 4.4646220000001335], [111.43885499999999, 4.464705999999978], [111.4389680000001, 4.464791000000048], [111.43885499999999, 4.464876000000004], [111.43891000000013, 4.464918000000125], [111.43913599999996, 4.464917000000014], [111.4391930000001, 4.46496100000013], [111.43908100000004, 4.465044999999975], [111.4391930000001, 4.465130000000045], [111.43913599999996, 4.46517300000005], [111.43907999999999, 4.46517300000005], [111.43905199999995, 4.46517399999999], [111.43902300000002, 4.46517399999999], [111.4389680000001, 4.465215000000001], [111.43902300000002, 4.465257000000065], [111.43913599999996, 4.465257000000065], [111.4391930000001, 4.46530000000007], [111.43908100000004, 4.465383999999915], [111.43908100000004, 4.46551299999993], [111.43891100000002, 4.46551299999993], [111.4388560000001, 4.4655539999999405], [111.43891100000002, 4.465596000000062], [111.43908100000004, 4.465596000000062], [111.43908100000004, 4.465894000000048], [111.4388560000001, 4.466062999999963], [111.43891100000002, 4.466103999999973], [111.43902400000013, 4.466019999999958], [111.43908100000004, 4.466062999999963], [111.43908100000004, 4.466232999999988], [111.4388560000001, 4.46640200000013], [111.43891100000002, 4.466444000000081], [111.43902400000013, 4.466359000000125], [111.43908100000004, 4.46640200000013], [111.43908199999993, 4.466530000000091], [111.43891100000002, 4.466530999999975], [111.4388560000001, 4.466571999999985], [111.43896900000004, 4.466656], [111.4388560000001, 4.466741000000127], [111.43891100000002, 4.466783000000021], [111.43902400000013, 4.466783000000021], [111.43908199999993, 4.466826000000026], [111.43902400000013, 4.466869999999972], [111.43868600000008, 4.466869999999972], [111.43863099999993, 4.466912000000036], [111.43868600000008, 4.466953000000103], [111.43902400000013, 4.466953000000103], [111.43908199999993, 4.466994999999997], [111.43902400000013, 4.4670390000001134], [111.43891100000002, 4.4670390000001134], [111.43885699999998, 4.467081000000007], [111.43891200000007, 4.467122000000018], [111.43902400000013, 4.467122000000018], [111.43908100000004, 4.467166000000134], [111.43902400000013, 4.467209000000139], [111.43885699999998, 4.467209000000139], [111.43885699999998, 4.468226999999956], [111.43868700000013, 4.468226999999956], [111.43863200000004, 4.4682690000000775], [111.43868700000013, 4.468309000000033], [111.43885699999998, 4.468309000000033], [111.43885699999998, 4.468438000000049], [111.4389700000001, 4.468523000000118], [111.4389700000001, 4.468607000000134], [111.43891200000007, 4.468650000000139], [111.43880000000007, 4.4685660000001235], [111.43868700000013, 4.4685660000001235], [111.43863200000004, 4.468607000000134], [111.43874499999998, 4.46869200000009], [111.43874499999998, 4.468776999999989], [111.43891300000001, 4.468903000000125], [111.43936300000013, 4.468903000000125], [111.43942099999992, 4.46894600000013], [111.43936300000013, 4.4689890000001355], [111.43891300000001, 4.4689890000001355], [111.4388580000001, 4.469031000000086], [111.43891300000001, 4.46907299999998], [111.43936300000013, 4.4690720000000965], [111.43942099999992, 4.469115999999985], [111.43936300000013, 4.4691589999999906], [111.43891300000001, 4.4691589999999906], [111.4388580000001, 4.469201000000112], [111.43891300000001, 4.469243000000006], [111.44099899999992, 4.469241000000011], [111.44099899999992, 4.469411999999977], [111.44026500000012, 4.469413000000031], [111.44015200000001, 4.469497999999987], [111.43970200000007, 4.469497999999987], [111.43958899999996, 4.469582000000003], [111.43913799999996, 4.469583000000057], [111.43908300000004, 4.469624000000124], [111.43919599999998, 4.469709000000023], [111.43919599999998, 4.469838000000038], [111.43902600000013, 4.469838000000038], [111.43897099999998, 4.469879999999989], [111.43902600000013, 4.469920000000059], [111.43919599999998, 4.469920000000059], [111.43919599999998, 4.470218000000045], [111.43908399999992, 4.470302999999944], [111.43908399999992, 4.470431000000076], [111.43891300000001, 4.470431000000076], [111.43885899999998, 4.470473000000027], [111.43891400000007, 4.470515000000091], [111.43913900000007, 4.470514000000037], [111.43919700000004, 4.470557000000042], [111.43913900000007, 4.470600000000047], [111.43891400000007, 4.4706010000001015], [111.43885899999998, 4.470642000000112], [111.43891400000007, 4.4706840000000625], [111.43913900000007, 4.4706840000000625], [111.43919700000004, 4.470727000000068], [111.43908399999992, 4.470811999999967], [111.43919700000004, 4.470895999999982], [111.43913900000007, 4.470940000000098], [111.43902600000013, 4.470940000000098], [111.43885899999998, 4.471066000000064], [111.43891400000007, 4.471108000000129], [111.43902700000001, 4.471023000000059], [111.43919700000004, 4.471023000000059], [111.43919700000004, 4.471194000000139], [111.43897200000009, 4.471194000000139], [111.43897200000009, 4.471320999999989], [111.43885899999998, 4.4714060000001155], [111.43897200000009, 4.4714910000000145], [111.43897200000009, 4.471745000000112], [111.43885899999998, 4.471830000000011], [111.43897200000009, 4.471914000000027], [111.43897200000009, 4.472084000000052], [111.43886000000003, 4.472168000000067], [111.43897200000009, 4.472253000000023], [111.43897200000009, 4.472380000000044], [111.43914000000012, 4.472380000000044], [111.43919799999998, 4.472423000000049], [111.43914000000012, 4.472466000000054], [111.43891500000001, 4.472466000000054], [111.43886000000003, 4.472508000000005], [111.43891500000001, 4.472549000000015], [111.43959099999995, 4.472549000000015], [111.43970300000001, 4.472465], [111.440605, 4.472464000000059], [111.44071700000006, 4.4723789999999894], [111.44161900000006, 4.472378000000049], [111.44173100000012, 4.472292999999979], [111.44285800000011, 4.472292999999979], [111.44297100000006, 4.4722070000001395], [111.444323, 4.4722070000001395], [111.444435, 4.472122000000013], [111.44590000000011, 4.472122000000013], [111.446013, 4.472036000000003], [111.44804099999993, 4.472035000000119], [111.44815299999999, 4.4719499999999925], [111.44933799999995, 4.471949000000109], [111.44933799999995, 4.472121000000129], [111.44905499999999, 4.472121000000129], [111.44894200000005, 4.472206000000028], [111.44781599999999, 4.472206000000028], [111.44770300000005, 4.472290999999984], [111.44646400000005, 4.472292000000039], [111.4463510000001, 4.4723769999999945], [111.44511200000005, 4.472378000000049], [111.44499899999994, 4.472462000000064], [111.44353400000006, 4.472463000000005], [111.44342200000006, 4.472548000000074], [111.441957, 4.472549000000015], [111.44184400000006, 4.472634000000085], [111.440605, 4.472635000000025], [111.44049200000006, 4.472720000000095], [111.43925300000006, 4.4727210000000355], [111.43914000000012, 4.472805000000051], [111.43891500000001, 4.472805000000051], [111.43886000000003, 4.472846999999945], [111.43891500000001, 4.472887999999955], [111.43914000000012, 4.472887999999955], [111.43919799999998, 4.472932000000071], [111.43914000000012, 4.472975000000076], [111.43891500000001, 4.472975000000076], [111.43886000000003, 4.47301699999997], [111.43891500000001, 4.473058000000037], [111.43902800000012, 4.473058000000037], [111.43908500000003, 4.473102000000097], [111.43902800000012, 4.4731440000000475], [111.43857700000007, 4.473145000000102], [111.43852199999998, 4.473186000000112], [111.43857700000007, 4.473228000000063], [111.43891500000001, 4.473228000000063], [111.43897299999998, 4.473271000000068], [111.43891500000001, 4.473314000000073], [111.43880299999995, 4.473315000000127], [111.43874800000003, 4.4733560000001376], [111.43880299999995, 4.473398000000088], [111.43891500000001, 4.473398000000088], [111.43897299999998, 4.4734410000000935], [111.43886000000003, 4.473525000000109], [111.43886099999997, 4.474713000000008], [111.43897400000009, 4.474797000000024], [111.43891600000006, 4.474841000000083], [111.43869100000012, 4.474841000000083], [111.43863599999997, 4.474881999999923], [111.43869100000012, 4.474924000000044], [111.43897400000009, 4.474924000000044], [111.43897400000009, 4.475051999999948], [111.43886099999997, 4.47513600000002], [111.43886099999997, 4.475263000000041], [111.43914200000012, 4.475263000000041], [111.43919900000003, 4.475306000000046], [111.43914200000012, 4.475350000000105], [111.439029, 4.475350000000105], [111.43886200000003, 4.4754760000000715], [111.438917, 4.475517000000082], [111.439029, 4.475433000000066], [111.43914200000012, 4.475433000000066], [111.43925500000006, 4.475517000000082], [111.43936700000006, 4.475433000000066], [111.43948, 4.475433000000066], [111.43959299999995, 4.475517000000082], [111.439705, 4.475433000000066], [111.43981800000012, 4.475433000000066], [111.43993100000006, 4.475517000000082], [111.44004300000006, 4.475433000000066], [111.440156, 4.475431999999955], [111.44026900000011, 4.4755159999999705], [111.44038099999995, 4.475431999999955], [111.44049400000006, 4.475431999999955], [111.440607, 4.4755159999999705], [111.44071900000006, 4.475431999999955], [111.440832, 4.475431999999955], [111.44094500000011, 4.4755159999999705], [111.44105700000011, 4.475431999999955], [111.44117000000006, 4.475431999999955], [111.441283, 4.4755159999999705], [111.441395, 4.475431999999955], [111.44156600000014, 4.475431999999955], [111.44156600000014, 4.475603000000092], [111.441395, 4.475603000000092], [111.441283, 4.475687999999991], [111.44117000000006, 4.475687999999991], [111.44105700000011, 4.475772000000063], [111.440832, 4.475772000000063], [111.44071900000006, 4.475857000000133], [111.440607, 4.475857000000133], [111.44049400000006, 4.475942000000089], [111.44038200000006, 4.4759429999999725], [111.44026900000011, 4.476028000000099], [111.440156, 4.476028000000099], [111.44004399999994, 4.476112000000114], [111.43993100000006, 4.476112000000114], [111.43981800000012, 4.476197000000013], [111.43970600000006, 4.476197000000013], [111.43948, 4.4763659999999845], [111.43931300000008, 4.476367000000039], [111.43931300000008, 4.476493000000005], [111.43908800000008, 4.4766630000000305], [111.439143, 4.476704999999981], [111.43925500000006, 4.476620000000025], [111.43931300000008, 4.4766630000000305], [111.43931300000008, 4.476961000000017], [111.439143, 4.476961000000017], [111.43908800000008, 4.477003000000082], [111.439143, 4.477043999999921], [111.43925500000006, 4.477043999999921], [111.43931300000008, 4.477086999999926], [111.43925599999994, 4.477129999999931], [111.438917, 4.477129999999931], [111.43886300000014, 4.477172000000053], [111.43897499999997, 4.477257000000009], [111.43897499999997, 4.477342000000078], [111.43880500000012, 4.477470000000039], [111.438692, 4.477470000000039], [111.43863700000009, 4.4775110000000495], [111.438692, 4.4775529999999435], [111.43897499999997, 4.4775529999999435], [111.43897600000008, 4.477679999999964], [111.43886300000014, 4.47776500000009], [111.43886400000002, 4.47891199999998], [111.43869300000011, 4.47891199999998], [111.43863799999997, 4.47895299999999], [111.43869300000011, 4.4789950000000545], [111.43886400000002, 4.4789950000000545], [111.43886400000002, 4.479122000000132], [111.43897600000008, 4.479207000000031], [111.43891899999994, 4.47925099999992], [111.43869300000011, 4.47925099999992], [111.43863799999997, 4.479293000000041], [111.43869300000011, 4.479332999999997], [111.439031, 4.479332999999997], [111.43908900000002, 4.479376000000002], [111.43903200000005, 4.4794200000000615], [111.43891899999994, 4.4794200000000615], [111.43886400000002, 4.479462000000012], [111.43891899999994, 4.479503000000022], [111.43903200000005, 4.479503000000022], [111.43908800000008, 4.479546000000028], [111.43903200000005, 4.479590000000087], [111.43891899999994, 4.479590000000087], [111.43886400000002, 4.479630999999927], [111.43891899999994, 4.479671999999937], [111.43903200000005, 4.479671999999937], [111.43908900000002, 4.479716000000053], [111.43903200000005, 4.479759000000058], [111.43886400000002, 4.479759000000058], [111.43886400000002, 4.479886000000079], [111.43897700000014, 4.479970000000094], [111.43897700000014, 4.480225000000075], [111.43886400000002, 4.480309000000091], [111.43897700000014, 4.48039399999999], [111.43897700000014, 4.480564000000072], [111.43886500000013, 4.4806480000000874], [111.43897700000014, 4.4807329999999865], [111.43897700000014, 4.4809880000001385], [111.43886500000013, 4.481073000000038], [111.43897800000008, 4.4811579999999935], [111.43897800000008, 4.481327000000135], [111.43886500000013, 4.481412000000034], [111.43897800000008, 4.48149699999999], [111.43897800000008, 4.481666000000075], [111.43886500000013, 4.481751000000031], [111.43897800000008, 4.48183599999993], [111.43897800000008, 4.481920000000002], [111.43886500000013, 4.482005000000072], [111.43886600000002, 4.482176000000038], [111.43897800000008, 4.482260000000053], [111.43892099999994, 4.4823030000000585], [111.43869500000011, 4.4823030000000585], [111.43863999999996, 4.4823449999999525], [111.43869500000011, 4.482385999999963], [111.439033, 4.482385999999963], [111.43909099999996, 4.482430000000079], [111.439033, 4.482473000000084], [111.43892099999994, 4.482473000000084], [111.43886600000002, 4.482514999999978], [111.43892099999994, 4.482556000000045], [111.439033, 4.482556000000045], [111.43909099999996, 4.48259900000005], [111.439033, 4.482642000000055], [111.43886600000002, 4.482642000000055], [111.43886600000002, 4.483660000000043], [111.438696, 4.483660000000043], [111.43864100000008, 4.483701999999994], [111.438696, 4.483743000000004], [111.43886600000002, 4.483743000000004], [111.43886700000013, 4.48399900000004], [111.438696, 4.48399900000004], [111.43864100000008, 4.484040999999991], [111.438696, 4.484083000000055], [111.4388090000001, 4.484083000000055], [111.43886700000013, 4.48412600000006], [111.43875400000002, 4.4842100000000755], [111.43886700000013, 4.4842950000000315], [111.43886700000013, 4.484465000000057], [111.43898000000002, 4.484549000000072], [111.43886700000013, 4.484634000000028], [111.43898000000002, 4.484719000000098], [111.43898000000002, 4.484888000000069], [111.43886700000013, 4.484974000000079], [111.43898000000002, 4.485058999999978], [111.43898000000002, 4.485142999999994], [111.43886700000013, 4.48522800000012], [111.43909299999996, 4.485397999999975], [111.43909299999996, 4.485820999999987], [111.43903499999999, 4.485865000000047], [111.43892299999993, 4.485779999999977], [111.43886800000001, 4.485820999999987], [111.43909299999996, 4.485991000000013], [111.43909299999996, 4.486288999999999], [111.43880999999999, 4.486288999999999], [111.43875500000007, 4.486331000000064], [111.43880999999999, 4.486372000000074], [111.43892299999993, 4.486372000000074], [111.43898000000002, 4.48641600000002], [111.43886800000001, 4.486500000000035], [111.43892299999993, 4.486541000000045], [111.43909299999996, 4.486541000000045], [111.43909400000007, 4.486713000000066], [111.43892299999993, 4.486713000000066], [111.43880999999999, 4.486627999999939], [111.43875599999996, 4.4866700000000606], [111.43886800000001, 4.4867550000000165], [111.43886800000001, 4.486881000000096], [111.43909400000007, 4.486880000000042], [111.43909400000007, 4.487052000000062], [111.43886800000001, 4.487052000000062], [111.43886900000007, 4.488238000000138], [111.43903699999998, 4.4882370000000265], [111.43909499999995, 4.488280999999972], [111.43903699999998, 4.488323999999977], [111.43869900000004, 4.488325000000032], [111.43864400000012, 4.488366000000042], [111.43869900000004, 4.488407999999993], [111.43903699999998, 4.488407999999993], [111.43909499999995, 4.488450000000057], [111.43903699999998, 4.488493000000062], [111.43900899999994, 4.488493000000062], [111.43892400000004, 4.488494000000003], [111.43886900000007, 4.488535000000013], [111.43892400000004, 4.488577000000134], [111.43903699999998, 4.488577000000134], [111.43909499999995, 4.4886200000001395], [111.43903699999998, 4.488664000000028], [111.43892400000004, 4.488664000000028], [111.43886900000007, 4.488705000000039], [111.43892400000004, 4.488746000000049], [111.43903699999998, 4.488746000000049], [111.43909499999995, 4.488789000000054], [111.43903699999998, 4.488833], [111.43881199999998, 4.488833], [111.43875700000007, 4.48887400000001], [111.43881199999998, 4.488916000000074], [111.4396010000001, 4.488916000000074], [111.43971299999993, 4.48900100000003], [111.44129099999992, 4.488999999999919], [111.44140299999998, 4.489083999999934], [111.44298099999997, 4.489083000000051], [111.44309400000009, 4.4891680000000065], [111.44455800000009, 4.489167000000066], [111.44467100000003, 4.489252000000022], [111.44647400000014, 4.489251000000081], [111.44653199999999, 4.489294000000086], [111.44647400000014, 4.489337000000091], [111.44591100000008, 4.489337000000091], [111.44579799999997, 4.489422000000047], [111.44252999999998, 4.489424000000042], [111.44241799999992, 4.489339000000086], [111.44140400000003, 4.489340000000027], [111.44129099999992, 4.489255999999955], [111.44050200000004, 4.489255999999955], [111.4403890000001, 4.489171000000056], [111.43971299999993, 4.4891719999999395], [111.4396010000001, 4.4890870000000405], [111.4389250000001, 4.4890870000000405], [111.43887000000001, 4.489128999999934], [111.4389250000001, 4.489169999999945], [111.43903699999998, 4.489169999999945], [111.43909400000007, 4.489214000000061], [111.43903699999998, 4.489257000000066], [111.4389250000001, 4.489257000000066], [111.43887000000001, 4.48929899999996], [111.4389250000001, 4.489340000000027], [111.43909499999995, 4.489340000000027], [111.43909499999995, 4.489511000000107], [111.4389250000001, 4.489511000000107], [111.43887000000001, 4.489553000000058], [111.4389250000001, 4.489594000000068], [111.43909499999995, 4.489594000000068], [111.43909499999995, 4.489721999999972], [111.43898300000012, 4.4898070000000985], [111.43909499999995, 4.4898919999999976], [111.43903800000004, 4.489935000000003], [111.43901000000005, 4.489935000000003], [111.4389250000001, 4.489936000000114], [111.43887000000001, 4.489977000000124], [111.4389250000001, 4.490019000000075], [111.43909600000006, 4.490019000000075], [111.43909600000006, 4.490146000000095], [111.4389250000001, 4.490275000000111], [111.4388130000001, 4.490275000000111], [111.43875799999995, 4.4903170000000046], [111.43909499999995, 4.490571000000045], [111.43903800000004, 4.4906140000000505], [111.4388130000001, 4.4906140000000505], [111.43875799999995, 4.490656000000001], [111.43887100000006, 4.490740000000017], [111.43887100000006, 4.490865999999983], [111.43903800000004, 4.490865999999983], [111.43909600000006, 4.490910000000042], [111.43903800000004, 4.490953000000047], [111.43887100000006, 4.490953000000047], [111.43887100000006, 4.492182000000128], [111.43892600000004, 4.492223000000138], [111.43898200000001, 4.492182000000128], [111.43898200000001, 4.492097000000058], [111.43903899999992, 4.492053000000112], [111.43909700000012, 4.492097000000058], [111.43909700000012, 4.4923089999999775], [111.43858900000004, 4.492310000000089], [111.43853400000006, 4.492351000000099], [111.43858900000004, 4.492392999999993], [111.43903899999992, 4.492392000000109], [111.43909700000012, 4.492435999999998], [111.43903899999992, 4.492479000000003], [111.43870100000004, 4.492480000000114], [111.43864600000012, 4.492521000000124], [111.43870100000004, 4.492563000000018], [111.43915200000004, 4.492563000000018], [111.43921000000006, 4.49260500000014], [111.43915200000004, 4.492647999999974], [111.43892700000009, 4.4926490000000285], [111.438872, 4.4926900000000956], [111.43892700000009, 4.4927319999999895], [111.43915200000004, 4.4927319999999895], [111.43921000000006, 4.492774999999995], [111.43915200000004, 4.492819000000111], [111.43892700000009, 4.492819000000111], [111.438872, 4.492860000000121], [111.43892700000009, 4.492902000000015], [111.43926499999998, 4.492902000000015], [111.43937799999992, 4.49298600000003], [111.43994099999998, 4.492984999999976], [111.44005400000009, 4.493070000000046], [111.44061699999997, 4.493070000000046], [111.44073000000009, 4.493155000000002], [111.44129299999992, 4.493155000000002], [111.44140600000003, 4.493240000000128], [111.44196900000009, 4.493239000000017], [111.44208200000003, 4.493323000000032], [111.44264500000008, 4.493323000000032], [111.44275799999997, 4.493407999999988], [111.44332200000014, 4.493407999999988], [111.44343400000014, 4.493493000000058], [111.44399800000008, 4.493492000000003], [111.44411000000014, 4.493577000000073], [111.44444800000002, 4.493577000000073], [111.44456100000014, 4.493660999999918], [111.44512400000002, 4.493660999999918], [111.44523700000013, 4.493746000000044], [111.44568800000013, 4.49374499999999], [111.44580100000007, 4.4938300000000595], [111.44636400000013, 4.4938300000000595], [111.44647700000002, 4.493915000000015], [111.44692699999996, 4.493915000000015], [111.44704000000007, 4.493999000000031], [111.44760400000001, 4.49399799999992], [111.44771600000007, 4.494083000000046], [111.44828000000001, 4.494083000000046], [111.44833600000004, 4.494126000000051], [111.44828000000001, 4.49416999999994], [111.44760400000001, 4.49416999999994], [111.44749100000007, 4.4942550000000665], [111.44647700000002, 4.4942550000000665], [111.44636400000013, 4.494339999999966], [111.44523800000002, 4.494341000000077], [111.44512500000008, 4.494425999999976], [111.44399800000008, 4.494427000000087], [111.44388600000008, 4.494511999999986], [111.44264600000014, 4.494513000000097], [111.44253400000014, 4.4945970000001125], [111.44106900000003, 4.494597999999996], [111.44095600000009, 4.494683000000123], [111.43887300000006, 4.494684000000007], [111.43887300000006, 4.495021000000008], [111.438874, 4.496465000000114], [111.43870399999992, 4.496465000000114], [111.438649, 4.496505999999954], [111.43870399999992, 4.496548000000075], [111.43892900000009, 4.496548000000075], [111.43898700000011, 4.49659100000008], [111.438874, 4.4966759999999795], [111.43898700000011, 4.496761000000106], [111.438874, 4.496845000000121], [111.43887500000005, 4.498074999999915], [111.43904300000008, 4.498074999999915], [111.4391, 4.49811799999992], [111.43904300000008, 4.498160999999925], [111.43870500000003, 4.498160999999925], [111.43865000000011, 4.498201999999992], [111.43870500000003, 4.4982440000000565], [111.43904300000008, 4.4982440000000565], [111.4391, 4.498287000000062], [111.43904300000008, 4.498331000000007], [111.43892999999997, 4.498331000000007], [111.43887500000005, 4.498372000000018], [111.43892999999997, 4.498414000000082], [111.43915600000003, 4.498414000000082], [111.43921299999994, 4.498456000000033], [111.43915600000003, 4.498500000000092], [111.43892999999997, 4.498500000000092], [111.43887500000005, 4.498540999999932], [111.43892999999997, 4.498583000000053], [111.43915600000003, 4.498583000000053], [111.43921299999994, 4.498626000000058], [111.43915600000003, 4.498669999999947], [111.43892999999997, 4.498669999999947], [111.43887500000005, 4.498712000000069], [111.43892999999997, 4.498753000000079], [111.44946699999997, 4.4987469999999234], [111.44946699999997, 4.499002999999959], [111.44929699999994, 4.499002999999959], [111.449184, 4.499087000000031], [111.448733, 4.499087000000031], [111.448621, 4.499172000000101], [111.448057, 4.499173000000042], [111.447945, 4.499258000000111], [111.44738100000006, 4.499258000000111], [111.447269, 4.499343000000067], [111.44659300000006, 4.4993440000001215], [111.44648000000012, 4.499428000000137], [111.44569100000001, 4.499428000000137], [111.44557900000001, 4.4995139999999765], [111.44467699999996, 4.4995139999999765], [111.44456500000013, 4.499599000000103], [111.44332500000002, 4.499599999999987], [111.44321299999996, 4.499685000000113], [111.43938200000008, 4.499687000000108], [111.43926900000014, 4.499601999999982], [111.43898900000005, 4.499603000000093], [111.43898900000005, 4.499729000000002], [111.43887599999994, 4.499813000000017], [111.43898900000005, 4.499897999999973], [111.43898900000005, 4.500067999999999], [111.43887599999994, 4.500153000000125], [111.43898900000005, 4.500238000000024], [111.43898900000005, 4.500492000000065], [111.43887700000005, 4.500577000000021], [111.43898900000005, 4.50066199999992], [111.43887700000005, 4.5007459999999355], [111.43898900000005, 4.500831000000062], [111.43893199999997, 4.500874999999951], [111.43870600000008, 4.500874999999951], [111.438651, 4.500916000000018], [111.43870600000008, 4.500958000000082], [111.43893199999997, 4.500958000000082], [111.43898900000005, 4.5010010000000875], [111.43893199999997, 4.501044000000093], [111.43881900000002, 4.501044000000093], [111.4387640000001, 4.501085000000103], [111.43881900000002, 4.501127000000054], [111.43893199999997, 4.501127000000054], [111.43898999999999, 4.501170000000059], [111.43887700000005, 4.501254999999958], [111.43898999999999, 4.501340000000084], [111.43887700000005, 4.501424999999983], [111.43887799999993, 4.502231999999992], [111.43870700000002, 4.502231999999992], [111.4386520000001, 4.502273000000002], [111.43870700000002, 4.502315000000124], [111.43887799999993, 4.502315000000124], [111.43887799999993, 4.502441999999974], [111.43898999999999, 4.502527000000043], [111.43893300000008, 4.502570999999989], [111.43870700000002, 4.502570999999989], [111.4386520000001, 4.5026130000000535], [111.43870700000002, 4.502654000000064], [111.43898999999999, 4.502654000000064], [111.43899100000004, 4.502781000000141], [111.43887799999993, 4.502866999999924], [111.43887799999993, 4.50295200000005], [111.43904600000002, 4.503077000000076], [111.43915800000002, 4.50299300000006], [111.43921600000004, 4.5030360000000655], [111.43921600000004, 4.503164000000027], [111.43893300000008, 4.503164000000027], [111.43887799999993, 4.503206000000091], [111.43893300000008, 4.503246999999931], [111.44344000000012, 4.503244999999936], [111.44355300000007, 4.503160000000037], [111.44366500000007, 4.503244999999936], [111.44377800000001, 4.5031589999999255], [111.447271, 4.503156999999987], [111.44738400000011, 4.503242000000057], [111.447496, 4.503242000000057], [111.44760900000011, 4.503156999999987], [111.447722, 4.503242000000057], [111.44817300000005, 4.503242000000057], [111.44828500000006, 4.503156999999987], [111.448398, 4.503242000000057], [111.44851100000011, 4.503156999999987], [111.44862299999994, 4.503156000000047], [111.44873600000005, 4.503241000000003], [111.448849, 4.503156000000047], [111.44896100000005, 4.503156000000047], [111.449074, 4.503241000000003], [111.44918700000011, 4.503156000000047], [111.44929900000011, 4.503156000000047], [111.44947000000008, 4.503284000000008], [111.44947000000008, 4.503836000000035], [111.449074, 4.503836000000035], [111.44896199999994, 4.5039220000000455], [111.448398, 4.5039220000000455], [111.448286, 4.504006000000061], [111.447722, 4.504006000000061], [111.44761, 4.504092000000071], [111.44704600000006, 4.504092000000071], [111.446934, 4.504177000000141], [111.44625800000006, 4.504177000000141], [111.44614500000012, 4.504262000000097], [111.44546900000012, 4.504262000000097], [111.445356, 4.504346999999996], [111.44468000000006, 4.504348000000107], [111.444568, 4.504433000000006], [111.44366600000001, 4.504433000000006], [111.44355400000012, 4.504518000000132], [111.44242699999995, 4.504519000000016], [111.44231400000001, 4.504603000000031], [111.43899199999998, 4.504605000000026], [111.43899199999998, 4.504732000000047], [111.43887900000004, 4.504817000000003], [111.43899199999998, 4.504902000000129], [111.43899199999998, 4.504985999999974], [111.43887900000004, 4.505071000000044], [111.43899199999998, 4.5051559999999995], [111.43887900000004, 4.505241000000069], [111.43887900000004, 4.50541000000004], [111.43899199999998, 4.505494999999939], [111.43893400000013, 4.505539000000056], [111.43870900000002, 4.505539000000056], [111.43865400000004, 4.505580000000066], [111.43870900000002, 4.505621000000076], [111.43893500000007, 4.505621000000076], [111.43899199999998, 4.505665000000022], [111.43887999999993, 4.505750000000091], [111.43899199999998, 4.505835000000047], [111.43887999999993, 4.505919000000063], [111.43899199999998, 4.506003999999962], [111.43887999999993, 4.506089000000088], [111.43887999999993, 4.506894999999986], [111.43871000000007, 4.506894999999986], [111.43865499999998, 4.506937000000107], [111.43871000000007, 4.506978000000117], [111.43887999999993, 4.506978000000117], [111.43887999999993, 4.507107000000133], [111.43899300000004, 4.507192000000032], [111.43893500000007, 4.507233999999983], [111.43871000000007, 4.507233999999983], [111.43865499999998, 4.507276000000047], [111.43871000000007, 4.507317999999998], [111.43876699999998, 4.507317000000057], [111.43882300000001, 4.507317000000057], [111.43888100000004, 4.507361000000003], [111.4387680000001, 4.507446000000073], [111.43888100000004, 4.507529999999917], [111.43888100000004, 4.507742000000064], [111.43904799999996, 4.507742000000064], [111.43910599999998, 4.507785000000069], [111.43904900000007, 4.5078280000000746], [111.43882300000001, 4.5078280000000746], [111.4387680000001, 4.507869000000085], [111.43882300000001, 4.5079110000000355], [111.44028800000007, 4.507909999999924], [111.44040100000001, 4.507995000000051], [111.44197800000012, 4.50799399999994], [111.44209100000006, 4.508079000000066], [111.44355600000011, 4.508078000000012], [111.44366799999995, 4.508163000000081], [111.445021, 4.508162000000027], [111.44513300000006, 4.508246000000042], [111.446485, 4.508244999999931], [111.44659800000011, 4.508330000000058], [111.44806299999999, 4.508330000000058], [111.4481760000001, 4.508414999999957], [111.44936000000001, 4.508414000000073], [111.44936000000001, 4.508755000000065], [111.44896500000004, 4.508755000000065], [111.4488520000001, 4.50883900000008], [111.44806299999999, 4.508840000000134], [111.44795099999999, 4.50892500000009], [111.4470490000001, 4.50892500000009], [111.4469370000001, 4.5090110000001005], [111.44603500000005, 4.5090110000001005], [111.44592300000005, 4.5090959999999995], [111.445021, 4.509097000000111], [111.444909, 4.509181000000126], [111.44366900000006, 4.50918200000001], [111.44355600000011, 4.509267000000136], [111.44175400000006, 4.50926800000002], [111.44164100000012, 4.509352999999976], [111.43893700000001, 4.5093550000001414], [111.43888200000009, 4.509395999999981], [111.43899500000003, 4.509479999999996], [111.43888200000009, 4.509565000000123], [111.43899500000003, 4.509650000000022], [111.43888200000009, 4.509736000000032], [111.43899500000003, 4.5098200000000475], [111.43899500000003, 4.510159000000044], [111.43888200000009, 4.510243999999943], [111.43899500000003, 4.51032900000007], [111.43899500000003, 4.510498000000041], [111.43888300000003, 4.510583000000111], [111.43899500000003, 4.5106680000000665], [111.43888300000003, 4.510752999999966], [111.43899500000003, 4.510836999999981], [111.43893800000012, 4.510881000000097], [111.43871200000007, 4.510881000000097], [111.43865699999998, 4.510922999999991], [111.43871200000007, 4.510964000000058], [111.43893800000012, 4.510964000000058], [111.43899500000003, 4.511007000000063], [111.43888300000003, 4.5110930000000735], [111.43899599999992, 4.511177000000089], [111.43888300000003, 4.511261999999988], [111.43888400000009, 4.512577000000078], [111.43871299999995, 4.512577000000078], [111.43865800000003, 4.512619000000029], [111.43871299999995, 4.512660000000039], [111.43882600000006, 4.512660000000039], [111.43888400000009, 4.512704000000099], [111.43877099999997, 4.512787999999944], [111.43888400000009, 4.51287300000007], [111.43888400000009, 4.513042000000041], [111.43877099999997, 4.513127000000111], [111.43888400000009, 4.513212000000067], [111.43888400000009, 4.513721000000089], [111.43877200000009, 4.513805999999988], [111.438827, 4.513846999999998], [111.43899700000003, 4.513846999999998], [111.43899700000003, 4.514060000000029], [111.43888499999997, 4.514144999999985], [111.43888499999997, 4.514526999999987], [111.43871499999995, 4.514528000000041], [111.43866000000003, 4.514569000000051], [111.43871499999995, 4.514611000000002], [111.438827, 4.514611000000002], [111.43888499999997, 4.514654000000007], [111.43866000000003, 4.514822999999922], [111.43866000000003, 4.515756000000067], [111.43854800000003, 4.515841000000137], [111.43866000000003, 4.515926000000093], [111.43866000000003, 4.516052000000002], [111.43888600000008, 4.516052000000002], [111.43888600000008, 4.5161800000001335], [111.43899900000002, 4.516265000000033], [111.438941, 4.516308000000038], [111.43871600000006, 4.516308000000038], [111.43866100000014, 4.5163499999999885], [111.43871600000006, 4.516390999999999], [111.438941, 4.516390999999999], [111.43899900000002, 4.516434000000004], [111.43888600000008, 4.51651900000013], [111.43899900000002, 4.516604000000029], [111.43888600000008, 4.516688999999985], [111.43899900000002, 4.516774000000055], [111.43888600000008, 4.516859000000011], [111.438941, 4.516900000000021], [111.44243399999999, 4.516898000000026], [111.44254699999993, 4.516813000000127], [111.44266000000005, 4.516898000000026], [111.4427720000001, 4.516898000000026], [111.44288500000005, 4.516813000000127], [111.44299799999993, 4.516898000000026], [111.44378599999999, 4.516896999999972], [111.4438990000001, 4.516812000000016], [111.44401199999999, 4.516896999999972], [111.44491299999993, 4.516896999999972], [111.44502600000004, 4.516980999999987], [111.44587200000007, 4.516980000000046], [111.445873, 4.5174480000000585], [111.44570200000004, 4.51757600000002], [111.44097000000005, 4.517577999999958], [111.44085700000011, 4.517493999999942], [111.439956, 4.5174950000000536], [111.43984300000005, 4.517410000000098], [111.43933700000008, 4.517410000000098], [111.43933700000008, 4.5175369999999475], [111.43928, 4.517579000000069], [111.43916700000005, 4.5174950000000536], [111.43894200000011, 4.517496000000108], [111.43888699999997, 4.5175369999999475], [111.43894200000011, 4.517579000000069], [111.43911200000014, 4.517579000000069], [111.43911200000014, 4.517835000000105], [111.43894200000011, 4.517835000000105], [111.43888699999997, 4.517876000000115], [111.43894200000011, 4.517918000000066], [111.43911200000014, 4.517918000000066], [111.43911200000014, 4.518215999999995], [111.43888699999997, 4.518385000000137], [111.43894200000011, 4.518425999999977], [111.43905500000005, 4.518425999999977], [111.43911300000002, 4.518470000000093], [111.43905500000005, 4.518513000000098], [111.43894200000011, 4.518513000000098], [111.43888699999997, 4.518554999999992], [111.43894200000011, 4.518596000000002], [111.43905500000005, 4.518596000000002], [111.43911300000002, 4.518639000000007], [111.43905500000005, 4.5186820000000125], [111.438604, 4.518683000000124], [111.43854900000008, 4.518724000000134], [111.438604, 4.518766000000028], [111.43894200000011, 4.518766000000028], [111.43900000000008, 4.518809000000033], [111.43894200000011, 4.518852999999979], [111.43883000000005, 4.518852999999979], [111.43877500000013, 4.518893000000048], [111.43883000000005, 4.518934999999999], [111.438943, 4.518934999999999], [111.43900000000008, 4.518978000000004], [111.43888800000008, 4.519063000000131], [111.43888800000008, 4.5201240000001235], [111.43871800000005, 4.520125000000064], [111.43866300000008, 4.520166000000074], [111.43871800000005, 4.5202070000000845], [111.43888800000008, 4.5202070000000845], [111.43888800000008, 4.520334999999989], [111.43900100000002, 4.520420000000115], [111.438943, 4.520464000000004], [111.43871800000005, 4.520464000000004], [111.43866300000008, 4.520505000000071], [111.43871800000005, 4.520546000000081], [111.43888899999996, 4.520546000000081], [111.43888899999996, 4.520716000000107], [111.43905600000011, 4.520716000000107], [111.43911400000013, 4.520759000000112], [111.43905600000011, 4.520802000000117], [111.43888899999996, 4.520802000000117], [111.43888899999996, 4.5210550000001035], [111.43973299999999, 4.5210550000001035], [111.43984500000005, 4.521140000000003], [111.4401830000001, 4.521140000000003], [111.44029600000005, 4.521224000000018], [111.4406340000001, 4.521223000000134], [111.44074700000004, 4.521308000000033], [111.44097199999999, 4.521308000000033], [111.44108499999993, 4.521392999999989], [111.44142300000004, 4.521392999999989], [111.44153599999999, 4.521478000000059], [111.44187400000004, 4.521478000000059], [111.44198600000004, 4.521562000000131], [111.4424370000001, 4.521562000000131], [111.44255000000004, 4.52164700000003], [111.4428880000001, 4.521645999999976], [111.44300100000004, 4.521731000000045], [111.44345099999998, 4.521731000000045], [111.4435640000001, 4.521816000000001], [111.44401500000009, 4.521816000000001], [111.44412800000003, 4.5219000000000165], [111.44469100000003, 4.521899000000076], [111.44480399999998, 4.521984000000032], [111.44525400000009, 4.521984000000032], [111.44536700000003, 4.522068999999931], [111.44593099999997, 4.522068999999931], [111.44604300000003, 4.522153000000003], [111.44660699999997, 4.522153000000003], [111.446663, 4.5221950000000675], [111.44671899999997, 4.522237000000018], [111.44739499999997, 4.522237000000018], [111.44750800000008, 4.522322000000088], [111.44807200000002, 4.522322000000088], [111.44818400000008, 4.522407000000044], [111.44897300000014, 4.522405999999933], [111.44908600000008, 4.522489999999948], [111.4494810000001, 4.522489999999948], [111.44948199999999, 4.52283100000011], [111.4484680000001, 4.522832000000051], [111.4484680000001, 4.523002000000076], [111.44818500000014, 4.523002000000076], [111.44807200000002, 4.52291700000012], [111.44660699999997, 4.522918000000061], [111.44649400000003, 4.522833000000105], [111.44074799999993, 4.522835999999984], [111.44063500000004, 4.52292100000011], [111.44057900000001, 4.522878999999989], [111.4405220000001, 4.522837000000095], [111.44041000000004, 4.522837000000095], [111.44029699999993, 4.522921999999994], [111.44018399999999, 4.522921999999994], [111.44007199999999, 4.522837000000095], [111.43995900000004, 4.522921999999994], [111.4398460000001, 4.522921999999994], [111.4397340000001, 4.522837000000095], [111.43962099999999, 4.522921999999994], [111.43894499999999, 4.522923000000105], [111.43889000000007, 4.5229640000001154], [111.43900300000001, 4.5230490000000145], [111.43889000000007, 4.523133000000087], [111.43900300000001, 4.523217999999986], [111.43894499999999, 4.523262000000102], [111.43872000000005, 4.523262000000102], [111.43866500000007, 4.523303999999996], [111.43872000000005, 4.523345000000006], [111.43894499999999, 4.523345000000006], [111.43900300000001, 4.523388000000011], [111.43889000000007, 4.523473000000138], [111.43900200000007, 4.523558000000037], [111.43889000000007, 4.523642999999993], [111.43889100000013, 4.5246190000000865], [111.4387210000001, 4.5246190000000865], [111.43866600000001, 4.524661000000037], [111.4387210000001, 4.5247020000000475], [111.43889100000013, 4.5247020000000475], [111.43889100000013, 4.524958000000083], [111.4387210000001, 4.524958000000083], [111.43866600000001, 4.524999999999977], [111.43883400000004, 4.52512500000006], [111.43894600000004, 4.52512500000006], [111.43900400000007, 4.525169000000119], [111.43894600000004, 4.525212000000124], [111.43883400000004, 4.525212000000124], [111.43877900000012, 4.525254000000075], [111.43883400000004, 4.525295000000085], [111.43917199999993, 4.525295000000085], [111.43922900000001, 4.525338999999974], [111.43917199999993, 4.525381000000095], [111.43894600000004, 4.525381000000095], [111.43889100000013, 4.525422999999989], [111.43894600000004, 4.525465000000111], [111.43928399999999, 4.5254639999999995], [111.43934199999995, 4.525508000000116], [111.43928500000004, 4.525551000000121], [111.43894699999998, 4.525551000000121], [111.43889200000007, 4.525593000000015], [111.43894699999998, 4.525635000000136], [111.43934199999995, 4.525634000000025], [111.43934199999995, 4.525932000000012], [111.43928500000004, 4.525975000000017], [111.43922900000001, 4.525933000000123], [111.43917199999993, 4.525891000000001], [111.43905899999999, 4.525976000000128], [111.43894699999998, 4.525891000000001], [111.43889200000007, 4.525932000000012], [111.43905899999999, 4.526057999999978], [111.43917199999993, 4.525974000000133], [111.43934300000006, 4.526100999999983], [111.43934300000006, 4.526229999999998], [111.43894699999998, 4.526229999999998], [111.43889200000007, 4.526272000000063], [111.43894699999998, 4.526313000000073], [111.43923000000012, 4.526313000000073], [111.43923000000012, 4.52665300000001], [111.43894699999998, 4.52665300000001], [111.43889200000007, 4.526695000000075], [111.43894699999998, 4.526736000000085], [111.43934300000006, 4.526736000000085], [111.43934300000006, 4.527077000000077], [111.4390600000001, 4.527077000000077], [111.43900499999995, 4.527118999999971], [111.4390600000001, 4.527161000000092], [111.43934300000006, 4.527161000000092], [111.43934300000006, 4.527332000000058], [111.4390600000001, 4.527332000000058], [111.43900499999995, 4.527373000000068], [111.4390600000001, 4.527415000000133], [111.43934300000006, 4.527415000000133], [111.43934399999995, 4.527670999999998], [111.43917300000004, 4.527670999999998], [111.43911800000006, 4.527713000000119], [111.43917300000004, 4.5277540000001295], [111.43934399999995, 4.5277540000001295], [111.43934399999995, 4.5279259999999795], [111.43894800000004, 4.5279259999999795], [111.43889300000012, 4.52796699999999], [111.43900600000006, 4.528052000000116], [111.43889300000012, 4.528137000000015], [111.43900600000006, 4.528222000000142], [111.43894800000004, 4.528264000000036], [111.4387230000001, 4.528264999999976], [111.438668, 4.528305999999986], [111.4387230000001, 4.528348000000051], [111.43894800000004, 4.528348000000051], [111.43900600000006, 4.528391000000056], [111.43894800000004, 4.528435000000002], [111.43883600000004, 4.528435000000002], [111.43878100000012, 4.528476000000012], [111.43883600000004, 4.528518000000133], [111.43894800000004, 4.528518000000133], [111.43900600000006, 4.528561000000138], [111.43889300000012, 4.528644999999983], [111.438894, 4.530046000000084], [111.43872399999998, 4.530046000000084], [111.43866900000006, 4.530087000000094], [111.43872399999998, 4.530128999999988], [111.43883699999992, 4.530128999999988], [111.43894899999998, 4.530044000000089], [111.43900699999995, 4.530087000000094], [111.43900699999995, 4.530171999999993], [111.438894, 4.53025700000012], [111.43894899999998, 4.53029800000013], [111.43906200000009, 4.53029800000013], [111.43912000000006, 4.530341000000135], [111.43906200000009, 4.530385000000024], [111.43894899999998, 4.530385000000024], [111.438894, 4.530426999999975], [111.43900600000006, 4.530512000000044], [111.43889500000012, 4.530596000000116], [111.43895000000003, 4.530637000000127], [111.439233, 4.530637000000127], [111.439233, 4.530766000000142], [111.43900699999995, 4.530935000000056], [111.43900699999995, 4.531020000000012], [111.439233, 4.531190000000038], [111.439233, 4.531274000000053], [111.43917500000003, 4.531317000000058], [111.439119, 4.531274999999937], [111.43906299999998, 4.531233000000043], [111.43895000000003, 4.531233000000043], [111.43889500000012, 4.531274000000053], [111.43895000000003, 4.531316000000004], [111.43906299999998, 4.531316000000004], [111.43917500000003, 4.5314010000000735], [111.43940100000003, 4.5314010000000735], [111.43957100000011, 4.531529000000035], [111.439572, 4.532122000000072], [111.43951399999997, 4.532165000000077], [111.43940100000003, 4.532081000000062], [111.43934600000011, 4.5321230000001265], [111.43945900000006, 4.532207000000142], [111.43945900000006, 4.532292000000098], [111.439572, 4.532376999999997], [111.43951399999997, 4.532420000000002], [111.43940100000003, 4.532420000000002], [111.43934600000011, 4.532462000000123], [111.43940100000003, 4.532503000000133], [111.439572, 4.532503000000133], [111.439572, 4.5326310000000944], [111.43945900000006, 4.5327159999999935], [111.439572, 4.53280100000012], [111.439572, 4.532885000000135], [111.43951399999997, 4.53292800000014], [111.43940199999997, 4.532843000000014], [111.43934600000011, 4.532844000000125], [111.43928900000003, 4.532844000000125], [111.43923400000011, 4.532885000000135], [111.43928900000003, 4.532927000000029], [111.43945900000006, 4.532927000000029], [111.43945999999994, 4.533183000000065], [111.43928900000003, 4.533183000000065], [111.43923400000011, 4.533224000000132], [111.43928900000003, 4.533266000000026], [111.43940199999997, 4.533266000000026], [111.43945999999994, 4.533309000000031], [111.43928900000003, 4.5334380000000465], [111.43906400000009, 4.5334380000000465], [111.438896, 4.533564000000013], [111.43895099999997, 4.533605000000023], [111.43917699999997, 4.533605000000023], [111.43923400000011, 4.533649000000082], [111.43917699999997, 4.533692000000087], [111.43895099999997, 4.533692000000087], [111.438896, 4.533734000000038], [111.43900899999994, 4.533818000000053], [111.43895200000003, 4.5338610000000585], [111.43861300000003, 4.533861999999942], [111.438559, 4.5339029999999525], [111.43861399999997, 4.533945000000074], [111.43895200000003, 4.533945000000074], [111.43900899999994, 4.533988000000079], [111.43895200000003, 4.534031999999968], [111.43883900000009, 4.534031999999968], [111.438784, 4.534073000000035], [111.43889700000011, 4.53415700000005], [111.43889700000011, 4.535218000000043], [111.43872700000009, 4.535218999999984], [111.43867199999994, 4.535259999999994], [111.43872700000009, 4.535302000000115], [111.43889700000011, 4.535302000000115], [111.43889700000011, 4.535429000000136], [111.43901000000005, 4.535514000000035], [111.43895300000014, 4.53555799999998], [111.43872700000009, 4.53555799999998], [111.43867199999994, 4.535598999999991], [111.43872700000009, 4.535641000000055], [111.43895300000014, 4.535641000000055], [111.43901000000005, 4.53568400000006], [111.438898, 4.5357680000000755], [111.43895300000014, 4.535810000000026], [111.43917800000008, 4.535810000000026], [111.43923600000011, 4.535853000000031], [111.43917800000008, 4.53589699999992], [111.43895300000014, 4.53589699999992], [111.438898, 4.535939000000042], [111.43895300000014, 4.535980000000052], [111.43917800000008, 4.535980000000052], [111.43923600000011, 4.536023000000057], [111.43917800000008, 4.536066000000062], [111.43906600000003, 4.536066000000062], [111.438898, 4.5361930000000825], [111.43895300000014, 4.536234000000093], [111.43906600000003, 4.536149000000023], [111.43917800000008, 4.536149000000023], [111.43929100000003, 4.536234000000093], [111.43940400000014, 4.536149000000023], [111.43951599999997, 4.536149000000023], [111.43962900000008, 4.536234000000093], [111.43974200000002, 4.536149000000023], [111.43985400000008, 4.536149000000023], [111.43996699999997, 4.536234000000093], [111.44008000000008, 4.536149000000023], [111.44019200000014, 4.536149000000023], [111.44030500000008, 4.536234000000093], [111.44041800000002, 4.5361480000000824], [111.44053000000002, 4.5361480000000824], [111.44064300000014, 4.536233000000038], [111.44075600000008, 4.5361480000000824], [111.44086800000014, 4.5361480000000824], [111.44098100000002, 4.536233000000038], [111.44109399999996, 4.5361480000000824], [111.44391100000001, 4.536145999999917], [111.44402400000013, 4.536231000000043], [111.44413599999996, 4.536145999999917], [111.44424900000007, 4.536145999999917], [111.44436200000001, 4.536231000000043], [111.44447400000007, 4.536145999999917], [111.44458699999996, 4.536145999999917], [111.44470000000007, 4.536231000000043], [111.44503800000001, 4.536231000000043], [111.44515000000001, 4.5363159999999425], [111.44548900000001, 4.536315000000059], [111.44560100000001, 4.536400000000015], [111.44605200000007, 4.536400000000015], [111.44616500000001, 4.53648400000003], [111.44650300000006, 4.53648400000003], [111.44661500000007, 4.5365690000000995], [111.44695400000006, 4.5365690000000995], [111.44706600000012, 4.5366540000000555], [111.44751700000012, 4.536652999999944], [111.44763000000006, 4.536738000000071], [111.44808, 4.536738000000071], [111.44819300000012, 4.536822000000086], [111.44864400000012, 4.536822000000086], [111.44875700000006, 4.536907000000042], [111.44932000000006, 4.536906000000101], [111.449433, 4.536991000000057], [111.44960300000002, 4.536991000000057], [111.44960400000014, 4.537756000000115], [111.43895400000002, 4.537762000000043], [111.4388990000001, 4.537803999999994], [111.43901200000005, 4.537889000000064], [111.4388990000001, 4.53797400000002], [111.43901200000005, 4.538058000000035], [111.43895400000002, 4.538101999999924], [111.43872900000008, 4.538101999999924], [111.43867399999993, 4.538142999999991], [111.43872900000008, 4.538185000000055], [111.43895400000002, 4.538185000000055], [111.43901200000005, 4.5382280000000605], [111.4388990000001, 4.5383130000000165], [111.43901200000005, 4.538397000000032], [111.4388990000001, 4.538481999999931], [111.43889999999999, 4.539544000000092], [111.43873000000013, 4.539544000000092], [111.43867500000005, 4.539585000000102], [111.43873000000013, 4.539626999999996], [111.43889999999999, 4.539626999999996], [111.43889999999999, 4.539754000000016], [111.4390130000001, 4.539838999999972], [111.43895500000008, 4.539883000000032], [111.43873000000013, 4.539883000000032], [111.43867500000005, 4.5399249999999824], [111.43873000000013, 4.539965999999993], [111.43884300000008, 4.539965999999993], [111.43889999999999, 4.540008999999998], [111.43878799999999, 4.540094000000124], [111.43884300000008, 4.540135000000134], [111.43895500000008, 4.540135000000134], [111.4390130000001, 4.540179000000023], [111.43889999999999, 4.540263999999979], [111.4390130000001, 4.5403479999999945], [111.43895500000008, 4.540391], [111.43884300000008, 4.540391], [111.43878799999999, 4.540433000000064], [111.43884300000008, 4.540474000000074], [111.4390130000001, 4.540474000000074], [111.4390130000001, 4.540857000000017], [111.43912600000004, 4.540942000000086], [111.43912699999993, 4.5417900000001055], [111.43923899999999, 4.5418750000000045], [111.43912699999993, 4.54195900000002], [111.43929500000002, 4.542084999999986], [111.43940700000002, 4.542084999999986], [111.43957799999998, 4.542214000000001], [111.43957799999998, 4.542766000000029], [111.43907000000002, 4.542766000000029], [111.43890199999998, 4.542891999999995], [111.43895700000007, 4.542933000000005], [111.43918200000007, 4.542933000000005], [111.43924000000004, 4.54297600000001], [111.43918200000007, 4.54302000000007], [111.43895700000007, 4.54302000000007], [111.43890199999998, 4.54306200000002], [111.4390150000001, 4.54314700000009], [111.43895700000007, 4.543189000000041], [111.43861900000002, 4.543189000000041], [111.4385640000001, 4.543230999999935], [111.43861900000002, 4.543273000000056], [111.43895700000007, 4.543271999999945], [111.4390150000001, 4.543316000000061], [111.43895700000007, 4.543359000000066], [111.43884500000007, 4.543359000000066], [111.43878999999993, 4.54340099999996], [111.43890199999998, 4.543486000000087], [111.43890300000004, 4.544546000000025], [111.43873300000001, 4.544546000000025], [111.4386780000001, 4.544587999999976], [111.43873300000001, 4.544630000000041], [111.43890300000004, 4.544628999999986], [111.43890300000004, 4.544885000000022], [111.43873300000001, 4.544886000000133], [111.4386780000001, 4.544926999999973], [111.43873300000001, 4.544969000000037], [111.43901599999998, 4.544969000000037], [111.43901599999998, 4.545096999999998], [111.43890300000004, 4.545181000000014], [111.43890300000004, 4.545308000000034], [111.43907100000013, 4.545308000000034], [111.43912899999992, 4.545351000000039], [111.43890399999998, 4.545521000000065], [111.43895900000007, 4.545562000000075], [111.43912899999992, 4.545562000000075], [111.43912899999992, 4.545776000000046], [111.43901599999998, 4.5458600000000615], [111.43907100000013, 4.545901000000072], [111.43941000000007, 4.545901000000072], [111.43952200000012, 4.545985999999971], [111.43997300000012, 4.545985999999971], [111.44008600000006, 4.546071000000097], [111.44053600000001, 4.546070000000043], [111.44064900000012, 4.5461550000001125], [111.44121300000006, 4.5461550000001125], [111.44132500000006, 4.546239000000128], [111.44188900000006, 4.546239000000128], [111.44200100000006, 4.546324000000084], [111.44245200000006, 4.546324000000084], [111.442565, 4.546408000000099], [111.443241, 4.546408000000099], [111.44335400000011, 4.546492000000114], [111.44391699999994, 4.546492000000114], [111.44403000000005, 4.54657700000007], [111.44470600000005, 4.54657600000013], [111.444819, 4.5466610000000856], [111.44538200000005, 4.5466610000000856], [111.445495, 4.546745999999985], [111.446058, 4.546745999999985], [111.44617099999994, 4.54683], [111.4468470000001, 4.546829000000116], [111.44696000000005, 4.546914000000015], [111.4475230000001, 4.546914000000015], [111.44763599999999, 4.546999000000142], [111.44819900000005, 4.546998000000087], [111.44831199999999, 4.547082999999986], [111.44887599999993, 4.547082999999986], [111.44898799999999, 4.547167000000002], [111.4495520000001, 4.547167000000002], [111.44966399999993, 4.547252000000128], [111.45034099999998, 4.547251000000017], [111.45045300000004, 4.547335999999973], [111.45079099999992, 4.547335999999973], [111.45090400000004, 4.547421000000043], [111.45146799999998, 4.547421000000043], [111.45158000000004, 4.547505000000115], [111.45214399999998, 4.5475040000000035], [111.45225599999998, 4.54758900000013], [111.45281999999997, 4.54758900000013], [111.45293300000009, 4.547674000000029], [111.45349599999992, 4.547674000000029], [111.45360900000003, 4.547758999999985], [111.45405899999997, 4.547758000000044], [111.45417200000009, 4.54784200000006], [111.45473600000003, 4.54784200000006], [111.45484800000008, 4.547927000000016], [111.45529900000008, 4.547927000000016], [111.45541200000002, 4.548012000000142], [111.45597500000002, 4.548011000000031], [111.45608799999997, 4.548095000000046], [111.45653900000002, 4.548095000000046], [111.45665100000002, 4.548180000000002], [111.45721499999996, 4.548180000000002], [111.45732800000008, 4.548265000000072], [111.45789100000013, 4.548264000000017], [111.45800400000007, 4.5483489999999165], [111.45856700000013, 4.5483489999999165], [111.45868000000002, 4.548432999999932], [111.50409000000013, 4.548403000000121], [111.50420300000002, 4.548318000000052], [111.50532900000013, 4.548318000000052], [111.50544200000007, 4.548232000000041], [111.50555500000002, 4.548317000000111], [111.50566700000002, 4.548317000000111], [111.50578000000013, 4.548232000000041], [111.50747000000001, 4.548231000000101], [111.50758300000012, 4.548146000000031], [111.50769600000007, 4.548231000000101], [111.50780800000007, 4.548146000000031], [111.509048, 4.5481450000000905], [111.50916000000001, 4.548060000000021], [111.51276599999994, 4.548056999999915], [111.51287900000005, 4.54797300000007], [111.5152450000001, 4.547971000000075], [111.51535799999999, 4.547886000000005], [111.5176110000001, 4.547885000000065], [111.51772400000004, 4.5477990000000545], [111.51952699999998, 4.547798], [111.5196400000001, 4.547713999999985], [111.51975199999998, 4.547798], [111.5198650000001, 4.547798], [111.51997799999998, 4.547713999999985], [111.52392099999992, 4.547711000000106], [111.52403400000003, 4.54762599999998], [111.52414699999997, 4.547711000000106], [111.52426000000008, 4.547711000000106], [111.52437200000014, 4.547625000000096], [111.52752700000002, 4.547623000000101], [111.52763999999996, 4.547708], [111.52775300000008, 4.547623000000101], [111.52786500000013, 4.547708], [111.52966800000007, 4.547707000000116], [111.52978100000001, 4.54762199999999], [111.52989400000013, 4.547706000000005], [111.53000600000001, 4.547706000000005], [111.53011900000013, 4.547621000000106], [111.53023200000001, 4.547621000000106], [111.53034400000007, 4.547706000000005], [111.53045700000001, 4.547621000000106], [111.53124600000007, 4.547619999999995], [111.53135800000013, 4.547705000000121], [111.53147100000007, 4.547619999999995], [111.53564000000006, 4.547617000000116], [111.53575299999994, 4.547702000000072], [111.53586600000006, 4.547617000000116], [111.53597800000011, 4.547702000000072], [111.53609100000006, 4.547702000000072], [111.536204, 4.547617000000116], [111.536316, 4.547702000000072], [111.53789300000011, 4.547701000000131], [111.53800600000005, 4.547615000000121], [111.53811800000005, 4.547700000000077], [111.538231, 4.547700000000077], [111.53834400000011, 4.547615000000121], [111.538456, 4.547615000000121], [111.53856900000011, 4.547700000000077], [111.538682, 4.547615000000121], [111.53913199999994, 4.547615000000121], [111.53924500000005, 4.547700000000077], [111.539358, 4.547614000000067], [111.5394710000001, 4.547614000000067], [111.53958299999994, 4.5476990000001365], [111.53969600000005, 4.547614000000067], [111.53980899999999, 4.547614000000067], [111.53992100000005, 4.5476990000001365], [111.54003399999999, 4.547614000000067], [111.5401470000001, 4.5476990000001365], [111.5402590000001, 4.5476990000001365], [111.54037200000005, 4.547614000000067], [111.54048499999999, 4.547614000000067], [111.54059699999999, 4.5476990000001365], [111.54070999999993, 4.547613000000126], [111.54082300000005, 4.547698000000082], [111.5409350000001, 4.547698000000082], [111.54104800000005, 4.547613000000126], [111.54116099999999, 4.547698000000082], [111.54127299999999, 4.547698000000082], [111.5413860000001, 4.547613000000126], [111.5680910000001, 4.547592000000009], [111.56820400000004, 4.547507000000053], [111.57879600000012, 4.54749900000013], [111.57890900000007, 4.547584000000029], [111.58510599999994, 4.547578999999985], [111.58521900000005, 4.547664000000111], [111.58623299999994, 4.547663], [111.58634600000005, 4.547578000000101], [111.58916199999999, 4.547574999999995], [111.58927499999993, 4.547660000000121], [111.59671100000003, 4.547653999999966], [111.59682399999997, 4.547737999999981], [111.61192299999999, 4.547726000000068], [111.6120360000001, 4.547810000000084], [111.61214899999999, 4.547725000000014], [111.61226100000005, 4.547725000000014], [111.61237399999999, 4.547810000000084], [111.6124870000001, 4.547725000000014], [111.61259899999993, 4.547725000000014], [111.61271200000004, 4.547810000000084], [111.61282499999999, 4.547725000000014], [111.61293700000004, 4.547725000000014], [111.61304999999993, 4.547810000000084], [111.61316300000004, 4.547810000000084], [111.61327599999998, 4.547724000000073], [111.61338800000004, 4.547809000000029], [111.61417699999993, 4.547809000000029], [111.61429000000004, 4.547724000000073], [111.6144020000001, 4.547807999999918], [111.61451500000004, 4.547807999999918], [111.61462799999998, 4.547723000000019], [111.61473999999998, 4.547807999999918], [111.63209299999994, 4.5477930000001265], [111.63220600000005, 4.547708], [111.63231800000011, 4.5477930000001265], [111.63243100000005, 4.5477930000001265], [111.63254399999994, 4.547708], [111.632656, 4.5477930000001265], [111.63276900000011, 4.5477930000001265], [111.63288200000005, 4.547707000000116], [111.632995, 4.547792000000015], [111.633107, 4.547792000000015], [111.63322000000011, 4.547707000000116], [111.63333300000005, 4.547792000000015], [111.63344500000011, 4.547707000000116], [111.633558, 4.547707000000116], [111.63367099999994, 4.547792000000015], [111.633783, 4.547707000000116], [111.6338960000001, 4.547707000000116], [111.63400900000005, 4.547791000000132], [111.63412100000005, 4.547706000000005], [111.63423399999999, 4.547706000000005], [111.6343470000001, 4.547791000000132], [111.63445899999994, 4.547706000000005], [111.63457200000005, 4.547706000000005], [111.63468499999999, 4.547791000000132], [111.63479700000005, 4.547706000000005], [111.63490999999999, 4.547706000000005], [111.6350230000001, 4.547791000000132], [111.6351350000001, 4.547705000000121], [111.67479700000013, 4.547668999999985], [111.67491000000007, 4.547754000000111], [111.67502300000001, 4.547668999999985], [111.67513500000001, 4.547668999999985], [111.67524800000012, 4.547754000000111], [111.67536100000007, 4.547668999999985], [111.67547300000012, 4.547668999999985], [111.67558600000001, 4.547754000000111], [111.67569899999995, 4.547668999999985], [111.67581200000006, 4.547668000000101], [111.67592400000012, 4.547753], [111.67603700000006, 4.547668000000101], [111.67750200000012, 4.54766699999999], [111.67761399999995, 4.547752000000116], [111.67772700000006, 4.54766699999999], [111.67784, 4.54766699999999], [111.67795200000006, 4.547751000000005], [111.678065, 4.547666000000106], [111.67817800000012, 4.547666000000106], [111.678291, 4.547751000000005], [111.67840300000006, 4.547751000000005], [111.678516, 4.547666000000106], [111.67862900000011, 4.547751000000005], [111.67874099999995, 4.547751000000005], [111.67885400000006, 4.547666000000106], [111.678967, 4.547750000000121], [111.67907900000006, 4.547750000000121], [111.67919199999994, 4.547664999999995], [111.67930500000006, 4.547750000000121], [111.67941700000011, 4.547750000000121], [111.67953000000006, 4.547664999999995], [111.679643, 4.547750000000121], [111.68178400000005, 4.5477480000001265], [111.68189600000005, 4.547663], [111.682009, 4.5477480000001265], [111.6821220000001, 4.547747000000015], [111.68223399999994, 4.547662000000116], [111.68234700000005, 4.547747000000015], [111.6855010000001, 4.547744000000137], [111.68561400000004, 4.547659000000067], [111.70127600000006, 4.547644000000048], [111.701389, 4.547728999999947], [111.70150100000001, 4.547644000000048], [111.70161400000012, 4.547644000000048], [111.70172700000006, 4.547728999999947], [111.71074099999998, 4.54772000000014], [111.7108540000001, 4.547805000000039], [111.71096599999993, 4.547805000000039], [111.71107900000004, 4.547719000000029], [111.71119199999998, 4.547803999999985], [111.71716400000014, 4.547798], [111.71727600000014, 4.5478820000000155], [111.71738900000008, 4.5478820000000155], [111.71750200000002, 4.547798], [111.71761400000003, 4.5478820000000155], [111.72561400000012, 4.547874000000093], [111.72572700000006, 4.547958999999992], [111.72583999999995, 4.547958999999992], [111.725952, 4.547874000000093], [111.72606500000012, 4.547958999999992], [111.72617800000006, 4.547958999999992], [111.726291, 4.547872999999981], [111.726403, 4.547958000000108], [111.72651600000012, 4.547958000000108], [111.72662900000006, 4.547872999999981], [111.72674100000012, 4.547958000000108], [111.78082500000005, 4.5479009999999676], [111.78093799999994, 4.5478160000000685], [111.78105, 4.5479009999999676], [111.7811630000001, 4.5479009999999676], [111.78127600000005, 4.5478160000000685], [111.78138899999999, 4.5479009999999676], [111.78150099999999, 4.5479009999999676], [111.7816140000001, 4.5478160000000685], [111.78172700000005, 4.547900000000084], [111.7818390000001, 4.547900000000084], [111.78195199999999, 4.547814999999957], [111.78206499999993, 4.547900000000084], [111.78217699999999, 4.547814999999957], [111.7822900000001, 4.547814999999957], [111.78240300000004, 4.547900000000084], [111.78251500000005, 4.547814999999957], [111.78961300000009, 4.547807000000034], [111.78972499999992, 4.547723000000019], [111.78983800000003, 4.547807000000034], [111.78995099999997, 4.547805999999923], [111.79006300000003, 4.547722000000078], [111.79017599999997, 4.547805999999923], [111.79028900000009, 4.547722000000078], [111.79040100000009, 4.547722000000078], [111.79051400000003, 4.547805999999923], [111.79062699999997, 4.547722000000078], [111.79074000000008, 4.547721000000024], [111.79085199999992, 4.547805000000039], [111.79096500000003, 4.547721000000024], [111.80313400000006, 4.547708], [111.80324600000012, 4.547623000000101], [111.80335900000006, 4.547707000000116], [111.80347199999994, 4.547707000000116], [111.803584, 4.54762199999999], [111.80369700000011, 4.547707000000116], [111.80381000000006, 4.547707000000116], [111.80392200000006, 4.54762199999999], [111.804035, 4.547707000000116], [111.80414800000011, 4.54762199999999], [111.80426, 4.547621000000106], [111.80437300000011, 4.547706000000005], [111.804486, 4.547621000000106], [111.80459800000006, 4.547621000000106], [111.804711, 4.547706000000005], [111.80482400000011, 4.547621000000106], [111.80493599999994, 4.547621000000106], [111.80504900000005, 4.547706000000005], [111.805162, 4.547619999999995], [111.80527500000011, 4.547619999999995], [111.80538699999994, 4.547705000000121], [111.80550000000005, 4.547705000000121], [111.805613, 4.547619999999995], [111.80572500000005, 4.547705000000121], [111.83862499999992, 4.54766699999999], [111.83873800000003, 4.547582000000091], [111.83885099999998, 4.54766699999999], [111.83896300000004, 4.547582000000091], [111.84369600000014, 4.547576000000106], [111.84380800000014, 4.5474909999999795], [111.84392100000008, 4.547576000000106], [111.84403400000002, 4.5474909999999795], [111.84809000000007, 4.547486000000106], [111.84820200000007, 4.5474020000000905], [111.851808, 4.547398000000101], [111.85192100000012, 4.54731200000009], [111.85586400000005, 4.54730799999993], [111.855977, 4.547223000000031], [111.856089, 4.547307000000046], [111.85620199999994, 4.54722199999992], [111.89372100000008, 4.5471769999999765], [111.89383400000003, 4.547092000000021], [111.89394699999997, 4.547176000000036], [111.89405900000003, 4.547091000000137], [111.90318600000006, 4.547080000000108], [111.90329800000006, 4.546996000000092], [111.91422699999998, 4.546981999999957], [111.91433999999992, 4.546897000000058], [111.931353, 4.546875], [111.93140799999998, 4.546833000000106], [111.931353, 4.546792000000096], [111.93079, 4.546792000000096], [111.93073199999998, 4.546749000000091], [111.93079, 4.5467049999999745], [111.93112800000006, 4.5467049999999745], [111.93118299999998, 4.5466630000000805], [111.93112800000006, 4.5466220000000135], [111.93079, 4.5466220000000135], [111.93073199999998, 4.5465800000001195], [111.93078900000006, 4.546536000000003], [111.93124000000006, 4.546536000000003], [111.93129500000003, 4.546494000000109], [111.93124000000006, 4.546453000000099], [111.93101500000012, 4.546453000000099], [111.93095699999992, 4.546408999999983], [111.93101500000012, 4.546365999999978], [111.93112699999995, 4.546365999999978], [111.93118200000009, 4.546324000000084], [111.93112699999995, 4.546284000000128], [111.93101500000012, 4.546284000000128], [111.93095699999992, 4.5462400000000684], [111.93101400000006, 4.546197000000063], [111.93124000000006, 4.546197000000063], [111.93129500000003, 4.5461550000001125], [111.93118200000009, 4.546070000000043], [111.93118200000009, 4.545901000000072], [111.93129399999992, 4.545815999999945], [111.93118099999998, 4.545731000000046], [111.93118099999998, 4.545562000000075], [111.93129399999992, 4.545476000000065], [111.93118099999998, 4.545392000000049], [111.93118099999998, 4.545137000000068], [111.93129300000004, 4.545051999999998], [111.9311800000001, 4.544967999999983], [111.9311800000001, 4.544798000000128], [111.93129300000004, 4.544713000000002], [111.93123800000012, 4.544671000000108], [111.93112500000001, 4.544757000000118], [111.93095499999993, 4.544757000000118], [111.93095499999993, 4.544628999999986], [111.93106699999998, 4.54454400000003], [111.93101200000007, 4.54450300000002], [111.93090000000001, 4.54450300000002], [111.93084200000004, 4.544459000000131], [111.93089900000012, 4.544416000000126], [111.93123700000001, 4.544415000000015], [111.93129199999993, 4.544374000000005], [111.93123700000001, 4.544332999999995], [111.93078700000007, 4.544334000000106], [111.9307290000001, 4.5442899999999895], [111.93078700000007, 4.544246999999984], [111.93101200000007, 4.544246999999984], [111.93106699999998, 4.54420500000009], [111.93101200000007, 4.54416300000014], [111.93044800000013, 4.54416400000008], [111.93039099999999, 4.544121000000075], [111.93044800000013, 4.544077000000129], [111.93095400000004, 4.544077000000129], [111.93095400000004, 4.543907999999988], [111.93112400000007, 4.543907000000104], [111.93117899999999, 4.543866000000094], [111.93112400000007, 4.543823999999972], [111.93095400000004, 4.543823999999972], [111.93095299999999, 4.5434830000000375], [111.93112400000007, 4.5434830000000375], [111.93117899999999, 4.543441000000087], [111.93112300000001, 4.5434000000000765], [111.93095299999999, 4.5434000000000765], [111.93095299999999, 4.54322899999994], [111.93112300000001, 4.54322899999994], [111.9311780000001, 4.543187000000046], [111.93112300000001, 4.543146000000036], [111.93095299999999, 4.543146000000036], [111.93095200000005, 4.542848000000049], [111.93106499999999, 4.5427629999999795], [111.93095200000005, 4.542679000000135], [111.93106499999999, 4.542594000000008], [111.93095200000005, 4.542509000000052], [111.93095200000005, 4.542423999999983], [111.9310640000001, 4.542340000000138], [111.93095200000005, 4.5422550000000115], [111.930951, 4.542086000000097], [111.9310640000001, 4.542001000000141], [111.930951, 4.541916000000015], [111.930951, 4.5417470000001], [111.9310640000001, 4.54166100000009], [111.930951, 4.541576000000134], [111.930951, 4.541407000000049], [111.931063, 4.541322000000093], [111.93100800000008, 4.541281000000083], [111.92999400000002, 4.541281999999967], [111.92988199999996, 4.541367000000093], [111.92875500000002, 4.541369000000088], [111.928697, 4.541324999999972], [111.92875500000002, 4.541281999999967], [111.92931800000002, 4.541281000000083], [111.92943099999997, 4.541195999999957], [111.92988100000008, 4.541195000000073], [111.92999400000002, 4.541111000000058], [111.93067000000002, 4.5411099999999465], [111.93078200000002, 4.541025000000047], [111.93134599999996, 4.541023999999936], [111.93151300000011, 4.540897000000086], [111.93145800000002, 4.540856000000076], [111.93134599999996, 4.540941000000032], [111.93123300000002, 4.540941000000032], [111.93106200000011, 4.540813000000071], [111.93112000000008, 4.540770000000066], [111.931288, 4.540770000000066], [111.931288, 4.5406430000000455], [111.9314, 4.540557999999919], [111.93134500000008, 4.540517000000079], [111.93123300000002, 4.540602000000035], [111.93106200000011, 4.540602000000035], [111.93106200000011, 4.540431000000069], [111.93128700000005, 4.540431000000069], [111.93128700000005, 4.540304000000049], [111.9314, 4.540218999999979], [111.93134500000008, 4.5401780000001395], [111.93123200000014, 4.540263000000039], [111.93117399999994, 4.540218999999979], [111.93117399999994, 4.540007000000003], [111.93134399999997, 4.540007000000003], [111.93139900000011, 4.539965000000109], [111.93134399999997, 4.5399229999999875], [111.93117399999994, 4.539924000000042], [111.93117399999994, 4.539626000000112], [111.931286, 4.539540999999986], [111.93117300000006, 4.539457000000141], [111.93117300000006, 4.539287000000115], [111.931286, 4.539201999999989], [111.93123100000003, 4.539160000000095], [111.93106000000012, 4.539160000000095], [111.93106000000012, 4.5389480000001186], [111.93117300000006, 4.538863000000049], [111.93111800000014, 4.538822000000039], [111.93100500000003, 4.538822000000039], [111.930947, 4.538779000000034], [111.93106000000012, 4.538694000000078], [111.930947, 4.538608999999951], [111.93100500000003, 4.538565000000062], [111.93111700000003, 4.538565000000062], [111.93117199999995, 4.538524000000052], [111.93111700000003, 4.538483000000042], [111.93100500000003, 4.538483000000042], [111.930947, 4.538438999999926], [111.931059, 4.538354000000027], [111.931059, 4.538269000000071], [111.93094600000012, 4.538185000000055], [111.93100400000009, 4.53814200000005], [111.93111700000003, 4.53814200000005], [111.93117199999995, 4.538099999999986], [111.93111700000003, 4.538058000000035], [111.93094600000012, 4.538058999999919], [111.93094600000012, 4.5378880000000095], [111.93111599999997, 4.5378880000000095], [111.93117100000006, 4.537846000000059], [111.93111599999997, 4.537803999999994], [111.93094600000012, 4.5378050000000485], [111.93094600000012, 4.537549000000013], [111.93111599999997, 4.537548000000129], [111.93117100000006, 4.537507000000119], [111.93111599999997, 4.537464999999997], [111.93094600000012, 4.537464999999997], [111.93094500000001, 4.537209000000132], [111.93122799999998, 4.537209000000132], [111.93128300000006, 4.537167000000011], [111.93100300000003, 4.536955999999975], [111.93066499999992, 4.536955999999975], [111.93060700000012, 4.5369130000001405], [111.93066400000004, 4.536870000000135], [111.93122799999998, 4.536870000000135], [111.93128300000006, 4.536828000000071], [111.93122799999998, 4.536787000000061], [111.93089000000009, 4.536787000000061], [111.93083200000007, 4.536744000000056], [111.93089000000009, 4.53670000000011], [111.93100199999992, 4.53670000000011], [111.93105700000007, 4.536658000000045], [111.93100199999992, 4.536616999999978], [111.93088899999998, 4.536616999999978], [111.93083200000007, 4.536573999999973], [111.93088899999998, 4.536530999999968], [111.93122700000009, 4.536530999999968], [111.93128200000001, 4.536489000000074], [111.93116900000007, 4.536403999999948], [111.93116900000007, 4.536235000000033], [111.93128200000001, 4.536150000000077], [111.93116900000007, 4.536065000000008], [111.93116900000007, 4.535896000000037], [111.93128100000013, 4.535810000000026], [111.93116900000007, 4.535726000000011], [111.93116800000001, 4.5355559999999855], [111.93128100000013, 4.53547100000003], [111.93116800000001, 4.5353860000001305], [111.93116800000001, 4.535259999999994], [111.93094400000012, 4.535259999999994], [111.93094500000001, 4.535387000000014], [111.9308880000001, 4.535430000000019], [111.93083000000007, 4.535387000000014], [111.93083000000007, 4.535218000000043], [111.9308880000001, 4.535173999999984], [111.93122599999998, 4.535173999999984], [111.93128100000013, 4.535132000000033], [111.93122599999998, 4.535090000000139], [111.93088699999998, 4.535091000000023], [111.93083000000007, 4.5350480000000175], [111.93088699999998, 4.535004000000129], [111.93111300000004, 4.535004000000129], [111.93116800000001, 4.534962000000007], [111.93111300000004, 4.534920999999997], [111.93088699999998, 4.534922000000108], [111.93083000000007, 4.534877999999992], [111.93088699999998, 4.534834999999987], [111.9312250000001, 4.534834000000103], [111.93128000000002, 4.534793000000093], [111.9312250000001, 4.534751000000142], [111.93088699999998, 4.534752000000083], [111.93082900000002, 4.534708000000137], [111.93088699999998, 4.534665000000132], [111.93111199999998, 4.534665000000132], [111.93116700000007, 4.534624000000122], [111.93111199999998, 4.534582], [111.9305490000001, 4.5345830000001115], [111.93043599999999, 4.534497999999985], [111.92919699999999, 4.53449999999998], [111.92908400000005, 4.534415000000081], [111.92784500000005, 4.534416000000135], [111.9277320000001, 4.53433200000012], [111.926267, 4.534333000000004], [111.92615400000011, 4.534248999999988], [111.92491500000006, 4.534250999999983], [111.92480199999994, 4.534166000000084], [111.92356300000012, 4.534168000000079], [111.92350499999992, 4.5341240000001335], [111.92356300000012, 4.534081000000128], [111.923901, 4.534080000000074], [111.92401300000006, 4.533996000000059], [111.92615400000011, 4.533993000000123], [111.926267, 4.533908000000054], [111.9285200000001, 4.5339049999999474], [111.92863199999994, 4.533820000000048], [111.93105399999996, 4.533816999999942], [111.93105300000008, 4.533606000000077], [111.93116600000002, 4.5335210000000075], [111.93105300000008, 4.5334360000000515], [111.93105300000008, 4.533267000000137], [111.93116500000008, 4.533182000000011], [111.93105300000008, 4.533097000000055], [111.93105199999997, 4.53292800000014], [111.93116500000008, 4.532843000000014], [111.93105199999997, 4.532758000000115], [111.93105199999997, 4.532588999999973], [111.93116500000008, 4.532504000000017], [111.93105199999997, 4.532419000000118], [111.93105100000008, 4.532206000000087], [111.93133400000005, 4.532206000000087], [111.93138899999997, 4.532164000000137], [111.93133400000005, 4.5321230000001265], [111.9311090000001, 4.5321230000001265], [111.93105199999997, 4.532079000000067], [111.93116400000002, 4.531995000000052], [111.93105100000008, 4.531910000000096], [111.9311090000001, 4.531867000000091], [111.93133400000005, 4.531867000000091], [111.93138899999997, 4.531824999999969], [111.93133400000005, 4.531783000000075], [111.9311090000001, 4.531783999999959], [111.93105100000008, 4.53174000000007], [111.93116300000008, 4.531656000000055], [111.93105100000008, 4.531571000000099], [111.931108, 4.531528000000094], [111.93122100000011, 4.53152700000004], [111.93127600000003, 4.531486000000029], [111.93116300000008, 4.5314010000000735], [111.93116300000008, 4.531231999999932], [111.93127500000014, 4.531147000000033], [111.93116300000008, 4.531063000000017], [111.93116200000003, 4.530808000000036], [111.93127500000014, 4.530723000000137], [111.93116200000003, 4.53063800000001], [111.93116200000003, 4.530553000000111], [111.93127500000014, 4.530467999999985], [111.93122000000005, 4.530426999999975], [111.93104900000009, 4.530426999999975], [111.93104900000009, 4.530299000000014], [111.93093599999997, 4.5302140000001145], [111.930994, 4.530171000000109], [111.93110700000011, 4.530171000000109], [111.93127400000003, 4.530044999999973], [111.93121900000011, 4.530003000000079], [111.931106, 4.530087999999978], [111.93093599999997, 4.530087999999978], [111.93093599999997, 4.529960000000074], [111.93104800000003, 4.529875000000118], [111.93093599999997, 4.529789999999991], [111.93099300000006, 4.529748000000097], [111.93121900000011, 4.529746999999986], [111.93127400000003, 4.529705999999976], [111.93121900000011, 4.529664000000082], [111.93076800000011, 4.529665000000136], [111.93070999999992, 4.529621000000077], [111.93076800000011, 4.529578000000072], [111.93099300000006, 4.529578000000072], [111.93104800000003, 4.529536000000121], [111.93099300000006, 4.5294940000000565], [111.92986600000006, 4.5294960000000515], [111.92975400000006, 4.529581000000121], [111.92964100000012, 4.5294960000000515], [111.92524700000001, 4.5295019999999795], [111.92518899999999, 4.529458000000091], [111.92524700000001, 4.52941600000014], [111.92671100000001, 4.529413999999974], [111.92682400000012, 4.529329000000075], [111.92806300000012, 4.52932700000008], [111.92817600000006, 4.529241999999954], [111.92930300000006, 4.52924100000007], [111.92941500000006, 4.52915500000006], [111.93031700000012, 4.529153999999949], [111.93042900000012, 4.529069999999933], [111.93093500000009, 4.5290690000000495], [111.93093500000009, 4.528899000000024], [111.93110500000012, 4.528899000000024], [111.93116000000003, 4.528857000000073], [111.93110500000012, 4.528816000000063], [111.93093399999998, 4.528816000000063], [111.93093399999998, 4.528518000000133], [111.93115899999998, 4.5283489999999915], [111.931104, 4.528307000000041], [111.930992, 4.528393000000051], [111.93093399999998, 4.5283489999999915], [111.93093399999998, 4.528264000000036], [111.93115899999998, 4.528095000000121], [111.931104, 4.528053], [111.93099100000006, 4.528053], [111.9309330000001, 4.528009999999995], [111.93104600000004, 4.527925000000096], [111.9309330000001, 4.52784000000014], [111.93099100000006, 4.527797000000135], [111.931104, 4.527797000000135], [111.93115800000004, 4.5277560000001245], [111.93104600000004, 4.527670999999998], [111.93104600000004, 4.527586000000099], [111.9309330000001, 4.5275009999999725], [111.93099000000001, 4.527458000000138], [111.93121600000006, 4.527458000000138], [111.93127099999998, 4.527416000000073], [111.93115800000004, 4.5273310000001175], [111.93115800000004, 4.527161999999976], [111.9312700000001, 4.527077000000077], [111.93115699999998, 4.52699199999995], [111.93115699999998, 4.526823000000036], [111.9312700000001, 4.52673800000008], [111.93115699999998, 4.52665300000001], [111.93115699999998, 4.526439999999923], [111.93132700000001, 4.526439999999923], [111.9313820000001, 4.526398000000029], [111.93132700000001, 4.526357000000019], [111.93115699999998, 4.526357000000019], [111.93115600000004, 4.526186999999993], [111.93098900000012, 4.526186999999993], [111.9309310000001, 4.526145000000042], [111.93098900000012, 4.526100999999983], [111.93132700000001, 4.526100999999983], [111.9313820000001, 4.526059000000032], [111.93132700000001, 4.526018000000022], [111.93098900000012, 4.526018000000022], [111.9309310000001, 4.525975000000017], [111.93098800000001, 4.525931000000128], [111.93110100000013, 4.525931000000128], [111.93115600000004, 4.5258890000000065], [111.93110100000013, 4.525849000000051], [111.93098800000001, 4.525849000000051], [111.9309310000001, 4.5258060000000455], [111.93098800000001, 4.525761999999986], [111.93132600000007, 4.525761999999986], [111.93138100000004, 4.525720000000035], [111.93132600000007, 4.525678000000141], [111.93110100000013, 4.525679000000025], [111.93104299999993, 4.525635000000136], [111.93110100000013, 4.525592000000131], [111.93121299999996, 4.525592000000131], [111.9312680000001, 4.525551000000121], [111.93121299999996, 4.525509], [111.93098800000001, 4.525510000000111], [111.93087500000007, 4.525424999999984], [111.92997400000013, 4.525426000000095], [111.92986100000002, 4.5253410000001395], [111.92907200000013, 4.525342000000023], [111.92896000000007, 4.525257000000124], [111.92805800000008, 4.525258000000008], [111.92794500000014, 4.525173999999993], [111.92715700000014, 4.525175000000104], [111.92704400000002, 4.525091000000089], [111.92614300000008, 4.525091999999972], [111.92603000000014, 4.525007000000016], [111.92512900000003, 4.525008000000128], [111.92501600000008, 4.524923000000001], [111.92422699999997, 4.524924000000112], [111.92411400000003, 4.524840000000097], [111.92332600000003, 4.524840999999981], [111.92321299999992, 4.524756000000082], [111.92242400000003, 4.524757000000136], [111.9223110000001, 4.52467200000001], [111.9215230000001, 4.524673000000121], [111.92140999999998, 4.524589000000105], [111.921043, 4.524589000000105], [111.92067599999996, 4.524589000000105], [111.92067599999996, 4.52441900000008], [111.92107200000004, 4.524418000000139], [111.9211840000001, 4.52433300000007], [111.9218600000001, 4.524332000000129], [111.92197299999998, 4.524248000000114], [111.92264899999998, 4.524247000000059], [111.92276100000004, 4.5241620000001035], [111.92332499999998, 4.524161000000049], [111.92343699999998, 4.524076000000093], [111.92400099999992, 4.524075000000039], [111.92411299999998, 4.523990000000083], [111.92467700000009, 4.523989000000029], [111.92478899999992, 4.523905000000013], [111.92523999999997, 4.523904000000073], [111.92535199999998, 4.523819000000003], [111.92580299999997, 4.523819000000003], [111.92591599999992, 4.523732999999993], [111.92636600000003, 4.523732999999993], [111.92647899999997, 4.523648000000037], [111.92692900000009, 4.523646999999983], [111.92704200000003, 4.523563000000138], [111.92738000000008, 4.523562000000027], [111.92749300000003, 4.523477000000128], [111.92783100000008, 4.523477000000128], [111.92794300000014, 4.523392000000001], [111.92828100000003, 4.523391000000117], [111.92839400000014, 4.523307000000045], [111.92873200000002, 4.523305999999991], [111.92884400000008, 4.523221000000035], [111.92907000000014, 4.523221000000035], [111.92918199999997, 4.523136000000136], [111.92952000000008, 4.523135000000025], [111.92963299999997, 4.523050000000126], [111.92997100000008, 4.523050000000126], [111.93008300000008, 4.52296600000011], [111.93042100000002, 4.522964999999999], [111.93053400000014, 4.5228800000001], [111.93075900000008, 4.5228800000001], [111.93092700000011, 4.52275300000008], [111.93092700000011, 4.522625000000119], [111.93121000000008, 4.522625000000119], [111.93126400000011, 4.522583000000054], [111.93120900000002, 4.522541999999987], [111.93092600000006, 4.522541999999987], [111.93092600000006, 4.522369999999967], [111.93109699999997, 4.522369999999967], [111.931151, 4.522328000000073], [111.931039, 4.522244000000057], [111.93109600000008, 4.522201000000052], [111.93120900000002, 4.522201000000052], [111.93126400000011, 4.5221590000001015], [111.93120900000002, 4.522117000000037], [111.93098400000002, 4.522118000000091], [111.93092600000006, 4.522074000000032], [111.93098300000014, 4.522031000000027], [111.93109600000008, 4.522031000000027], [111.931151, 4.521989000000076], [111.93103800000006, 4.521905000000061], [111.93109600000008, 4.521862000000056], [111.93120900000002, 4.521861000000001], [111.93126400000011, 4.521819999999934], [111.931151, 4.521735000000035], [111.931151, 4.52165100000002], [111.93126300000006, 4.521566000000064], [111.93115000000012, 4.521480999999994], [111.93115000000012, 4.521227000000124], [111.93126300000006, 4.521141000000114], [111.93115000000012, 4.521055999999987], [111.93115000000012, 4.520887000000016], [111.93126200000012, 4.520802000000117], [111.93120700000003, 4.520761000000107], [111.931039, 4.520761000000107], [111.931039, 4.520887000000016], [111.93098200000003, 4.520931000000132], [111.93092400000006, 4.520888000000127], [111.93092400000006, 4.520718000000102], [111.931037, 4.520632999999975], [111.93092400000006, 4.520548000000076], [111.93098200000003, 4.520505000000071], [111.93120700000003, 4.520505000000071], [111.93126200000012, 4.52046300000012], [111.93120700000003, 4.520420999999999], [111.93098099999997, 4.52042200000011], [111.93092400000006, 4.520377999999994], [111.93103600000006, 4.5202939999999785], [111.93098099999997, 4.520253000000139], [111.93086899999992, 4.520253000000139], [111.93081100000012, 4.520209000000079], [111.93086800000003, 4.520166000000074], [111.93120599999992, 4.520164999999963], [111.93126100000006, 4.5201240000001235], [111.93120599999992, 4.520082000000059], [111.93086800000003, 4.520083000000113], [111.93081100000012, 4.520039000000054], [111.93086800000003, 4.519997000000103], [111.93098099999997, 4.519997000000103], [111.93103600000006, 4.519955000000039], [111.93098099999997, 4.519913000000088], [111.93081000000001, 4.519913999999972], [111.93081000000001, 4.519616000000042], [111.93075500000009, 4.519574000000091], [111.93069900000006, 4.519616000000042], [111.93069900000006, 4.519870000000083], [111.93064300000009, 4.519913999999972], [111.93058500000006, 4.519870000000083], [111.93058400000001, 4.5191070000000195], [111.93075400000004, 4.5189790000000585], [111.93092200000007, 4.5189790000000585], [111.93092200000007, 4.518852000000038], [111.93103400000007, 4.518767000000139], [111.93092200000007, 4.518683000000124], [111.93092099999996, 4.518513000000098], [111.93103400000007, 4.518427999999972], [111.93092099999996, 4.518344000000127], [111.93092099999996, 4.518215999999995], [111.93109100000004, 4.518215000000112], [111.93114600000013, 4.518174000000101], [111.93109100000004, 4.51813199999998], [111.9309780000001, 4.51813199999998], [111.93092099999996, 4.518090000000086], [111.93103300000001, 4.51800500000013], [111.93092099999996, 4.5179200000000606], [111.9309780000001, 4.517876000000115], [111.93109100000004, 4.517876000000115], [111.93114600000013, 4.51783400000005], [111.93109100000004, 4.517792999999983], [111.9309780000001, 4.517792999999983], [111.93092000000007, 4.517751000000089], [111.93103300000001, 4.517665000000079], [111.93092000000007, 4.517581000000064], [111.9309780000001, 4.5175369999999475], [111.93120300000004, 4.5175369999999475], [111.93125799999996, 4.5174950000000536], [111.93114500000001, 4.517411000000038], [111.93114500000001, 4.517241000000013], [111.93125799999996, 4.517156000000057], [111.93114500000001, 4.5170720000000415], [111.93114400000013, 4.51681700000006], [111.93125700000007, 4.516733000000045], [111.93114400000013, 4.516647999999975], [111.93114400000013, 4.516563000000019], [111.93125700000007, 4.516477000000009], [111.93114400000013, 4.516392999999994], [111.93114400000013, 4.5161820000001285], [111.9309760000001, 4.5161820000001285], [111.93091800000008, 4.516140000000007], [111.9309760000001, 4.516096000000118], [111.93131399999999, 4.516096000000118], [111.93136900000007, 4.516053999999997], [111.93131399999999, 4.516012000000103], [111.9309760000001, 4.516012999999987], [111.93091900000002, 4.515969999999982], [111.9309760000001, 4.515926000000093], [111.93108799999993, 4.515926000000093], [111.93114300000008, 4.515884000000142], [111.93108799999993, 4.515843000000132], [111.9309760000001, 4.515843000000132], [111.93091800000008, 4.515800000000127], [111.93097499999999, 4.5157570000001215], [111.9313130000001, 4.515756000000067], [111.93136800000002, 4.515715], [111.9313130000001, 4.515673000000106], [111.93097499999999, 4.51567399999999], [111.93091800000008, 4.515630000000101], [111.93097499999999, 4.515587000000096], [111.93120100000004, 4.515587000000096], [111.93125599999996, 4.515544999999975], [111.93119999999999, 4.515503000000081], [111.93086200000005, 4.515504000000135], [111.93069200000002, 4.51537600000006], [111.93069200000002, 4.515248000000099], [111.93086200000005, 4.515248000000099], [111.93091700000002, 4.515206000000035], [111.93086200000005, 4.515164999999968], [111.93069200000002, 4.515164999999968], [111.93069100000014, 4.514867000000038], [111.93074899999993, 4.514825000000087], [111.93086200000005, 4.514908999999932], [111.93091700000002, 4.514867000000038], [111.93080400000008, 4.514783000000023], [111.93080400000008, 4.514698000000067], [111.93069100000014, 4.514612999999997], [111.93074899999993, 4.514569999999992], [111.9309740000001, 4.514569000000051], [111.93102900000002, 4.514528000000041], [111.9309740000001, 4.514487000000031], [111.93041100000005, 4.514487999999915], [111.93029799999994, 4.514403000000016], [111.93007200000005, 4.514403000000016], [111.92996000000005, 4.514487999999915], [111.92984700000011, 4.514403000000016], [111.928495, 4.514405000000011], [111.92838200000006, 4.514320000000055], [111.927143, 4.51432200000005], [111.92703000000012, 4.514236999999923], [111.925904, 4.514238000000034], [111.92579100000006, 4.514154000000019], [111.925002, 4.514155000000073], [111.92488900000006, 4.514070000000004], [111.92410100000006, 4.514071000000058], [111.92398800000012, 4.513987000000043], [111.92331200000012, 4.513987000000043], [111.92319900000001, 4.5139030000000275], [111.92252300000001, 4.5139030000000275], [111.92241000000013, 4.513819000000012], [111.92184700000007, 4.513820000000067], [111.92173400000013, 4.513734999999997], [111.92117100000007, 4.513736000000051], [111.92105799999996, 4.513650999999982], [111.9204370000001, 4.513652000000036], [111.920436, 4.512929999999983], [111.92032300000011, 4.512846000000138], [111.92032300000011, 4.512718000000007], [111.92331000000013, 4.512714000000074], [111.92342300000007, 4.512629000000118], [111.93119700000005, 4.512619000000029], [111.93125200000003, 4.512577000000078], [111.93119700000005, 4.512536000000068], [111.93091399999992, 4.512536999999952], [111.93091300000003, 4.512364999999932], [111.93113900000009, 4.512364999999932], [111.93113900000009, 4.512239000000022], [111.93125099999992, 4.512154000000066], [111.931196, 4.512112000000002], [111.93108399999994, 4.5121970000000715], [111.93091300000003, 4.512198000000012], [111.93091300000003, 4.512025999999992], [111.93113799999998, 4.512025000000051], [111.93113799999998, 4.511900000000026], [111.93125099999992, 4.5118150000001265], [111.931196, 4.511773000000005], [111.93108300000006, 4.511858000000132], [111.93102500000003, 4.5118150000001265], [111.93102500000003, 4.51173], [111.93113799999998, 4.511645000000044], [111.93102500000003, 4.511561000000029], [111.93108300000006, 4.51151700000014], [111.93119500000012, 4.51151700000014], [111.93125000000003, 4.5114750000000186], [111.93119500000012, 4.511434000000008], [111.93102500000003, 4.511434000000008], [111.93102500000003, 4.511177999999973], [111.93119500000012, 4.511177999999973], [111.93125000000003, 4.511136000000079], [111.93119500000012, 4.511095000000012], [111.93102399999998, 4.511095000000012], [111.93102399999998, 4.510838999999976], [111.93119500000012, 4.510838999999976], [111.93124899999992, 4.510797000000082], [111.931194, 4.510755000000131], [111.93102399999998, 4.510756000000072], [111.93102399999998, 4.510628000000111], [111.93091100000004, 4.510543000000041], [111.93096900000006, 4.510500000000036], [111.931194, 4.510499000000095], [111.93124899999992, 4.510458000000085], [111.931194, 4.510415999999964], [111.93096900000006, 4.510415999999964], [111.9307980000001, 4.510288999999943], [111.93085600000012, 4.510245999999938], [111.93096799999995, 4.5102450000000545], [111.93108100000006, 4.510159999999928], [111.931194, 4.510159999999928], [111.93124899999992, 4.510118000000034], [111.931194, 4.510077000000024], [111.93068499999998, 4.510078000000078], [111.93068499999998, 4.509906999999998], [111.93096799999995, 4.509906000000058], [111.9310230000001, 4.5098650000000475], [111.93096799999995, 4.509822999999926], [111.92071500000003, 4.509836000000121], [111.92065800000012, 4.509793000000116], [111.92071500000003, 4.509749000000056], [111.92274300000014, 4.509747000000061], [111.92285600000008, 4.509661999999935], [111.92443299999996, 4.50965999999994], [111.92454600000008, 4.509575000000041], [111.92567200000002, 4.50957399999993], [111.92578500000013, 4.5094890000000305], [111.92679899999996, 4.5094870000000356], [111.92691100000002, 4.5094020000001365], [111.92770000000013, 4.509401000000025], [111.92781300000001, 4.50931700000001], [111.92860100000007, 4.509316000000126], [111.92871399999996, 4.509231], [111.92927700000001, 4.509230000000116], [111.92939000000013, 4.5091449999999895], [111.92995300000001, 4.509144000000106], [111.93006600000012, 4.509058999999979], [111.93062899999995, 4.5090580000000955], [111.93074100000001, 4.508974000000023], [111.93090900000004, 4.508974000000023], [111.93090900000004, 4.508847000000003], [111.93102199999998, 4.508762000000104], [111.93090900000004, 4.508678000000089], [111.93090799999999, 4.508423000000107], [111.9310210000001, 4.508339000000092], [111.93090799999999, 4.508253999999965], [111.93090799999999, 4.50808400000011], [111.9310210000001, 4.507999000000041], [111.93090799999999, 4.507915000000025], [111.93090799999999, 4.50778600000001], [111.93119100000013, 4.50778600000001], [111.93124600000004, 4.507744000000059], [111.93119100000013, 4.507701999999938], [111.93101999999999, 4.507703000000049], [111.93101999999999, 4.507447000000013], [111.93119000000002, 4.507447000000013], [111.93124499999999, 4.5074050000000625], [111.93119000000002, 4.507362999999998], [111.93096500000007, 4.507364000000052], [111.93090700000005, 4.507321000000047], [111.93101999999999, 4.507235999999978], [111.93090700000005, 4.507151000000022], [111.93096399999996, 4.5071080000000165], [111.93119000000002, 4.507107000000133], [111.93124499999999, 4.507066000000123], [111.93119000000002, 4.507025000000056], [111.9310190000001, 4.507025000000056], [111.9310190000001, 4.506768000000136], [111.93118900000013, 4.506768000000136], [111.93124400000005, 4.506727000000126], [111.93118900000013, 4.506686000000116], [111.9310190000001, 4.506686000000116], [111.931018, 4.506345000000124], [111.93118900000013, 4.506345000000124], [111.93124400000005, 4.506303000000003], [111.93118900000013, 4.506261999999992], [111.93107600000002, 4.506261999999992], [111.931018, 4.5062180000001035], [111.93113099999994, 4.506132999999977], [111.931018, 4.506049000000132], [111.93107600000002, 4.506006000000127], [111.93118800000002, 4.506006000000127], [111.931243, 4.505964000000063], [111.93118800000002, 4.505922000000112], [111.93107600000002, 4.505922000000112], [111.931018, 4.505879000000107], [111.93113000000005, 4.505794000000037], [111.93107500000013, 4.505752000000086], [111.93096300000008, 4.50575299999997], [111.93090500000005, 4.505709999999965], [111.93096300000008, 4.50566699999996], [111.93118800000002, 4.505666000000076], [111.931243, 4.505625000000066], [111.93118800000002, 4.505582999999945], [111.93096300000008, 4.505582999999945], [111.93090500000005, 4.5055399999999395], [111.93096200000002, 4.505496999999934], [111.93107500000013, 4.505496000000051], [111.93113000000005, 4.50545500000004], [111.93107500000013, 4.50541300000009], [111.93085000000013, 4.50541400000003], [111.93079199999994, 4.505371000000025], [111.93085000000013, 4.50532800000002], [111.93130000000008, 4.505327000000079], [111.931355, 4.505285000000015], [111.93130000000008, 4.505244000000005], [111.93084900000008, 4.505244000000005], [111.93079199999994, 4.505201], [111.93084900000008, 4.5051579999999944], [111.93107500000013, 4.505157000000054], [111.93113000000005, 4.505116000000044], [111.93107500000013, 4.5050750000000335], [111.93096200000002, 4.5050750000000335], [111.93079100000006, 4.504947000000072], [111.93079100000006, 4.504862000000003], [111.930904, 4.5047779999999875], [111.93090300000011, 4.50409900000011], [111.93101500000012, 4.504013999999984], [111.93090300000011, 4.503929000000085], [111.930902, 4.5037600000001135], [111.93101500000012, 4.503674999999987], [111.930902, 4.503590000000088], [111.930902, 4.503421000000117], [111.93078900000006, 4.503336000000047], [111.93084700000009, 4.503292000000101], [111.93096000000003, 4.503292000000101], [111.93101500000012, 4.503251000000091], [111.93095899999992, 4.503209000000027], [111.93084700000009, 4.503209000000027], [111.93073399999997, 4.503294000000096], [111.92926999999997, 4.503296000000091], [111.92915700000003, 4.503381000000047], [111.92634000000004, 4.50338499999998], [111.92622799999998, 4.503300000000081], [111.92464999999999, 4.503302000000076], [111.92453799999998, 4.50321700000012], [111.9236360000001, 4.503218000000061], [111.92357900000002, 4.50317600000011], [111.9236360000001, 4.5031320000000505], [111.93118500000014, 4.503123000000016], [111.93124000000006, 4.503081000000066], [111.93118500000014, 4.503040000000055], [111.93095899999992, 4.503040000000055], [111.930902, 4.502995999999939], [111.93101400000006, 4.50291100000004], [111.93090100000012, 4.502827000000025], [111.93095899999992, 4.50278400000002], [111.93118400000009, 4.50278400000002], [111.931239, 4.502742000000069], [111.93118400000009, 4.502700000000004], [111.93095899999992, 4.502701000000059], [111.93090100000012, 4.502656999999999], [111.93101400000006, 4.502572000000043], [111.93090100000012, 4.502488000000028], [111.93095899999992, 4.502445000000023], [111.93118400000009, 4.502444000000139], [111.931239, 4.502403000000129], [111.93118400000009, 4.502361000000008], [111.93101300000012, 4.502361000000008], [111.93101300000012, 4.502104999999972], [111.93118299999998, 4.502104999999972], [111.93123800000012, 4.502063000000021], [111.93118299999998, 4.502022000000011], [111.93101300000012, 4.502022000000011], [111.93101300000012, 4.501765999999975], [111.93118299999998, 4.501765999999975], [111.93123800000012, 4.501724000000081], [111.93118299999998, 4.501683000000014], [111.93101300000012, 4.501683000000014], [111.93101200000007, 4.501426999999978], [111.93118299999998, 4.501426999999978], [111.93123700000001, 4.501385000000084], [111.93118200000009, 4.5013430000001335], [111.93101200000007, 4.501344000000074], [111.93101200000007, 4.501216000000113], [111.93089900000012, 4.5011310000000435], [111.93089900000012, 4.501046000000088], [111.93095699999992, 4.5010030000000825], [111.93106899999998, 4.501088000000038], [111.93118200000009, 4.501088000000038], [111.93123700000001, 4.501046000000088], [111.93118200000009, 4.501003999999966], [111.93106899999998, 4.501003999999966], [111.93089900000012, 4.500876999999946], [111.93095600000004, 4.500833999999941], [111.93106899999998, 4.500833000000057], [111.93123700000001, 4.500707000000091], [111.93106899999998, 4.50058000000007], [111.93095600000004, 4.50058000000007], [111.93089800000001, 4.500538000000006], [111.93095600000004, 4.50049400000006], [111.93106899999998, 4.50049400000006], [111.93112400000007, 4.50045300000005], [111.93106899999998, 4.500410999999929], [111.93089800000001, 4.500410999999929], [111.93089800000001, 4.500028999999984], [111.93101000000007, 4.499942999999973], [111.93089800000001, 4.499859000000129], [111.93089700000013, 4.499689000000103], [111.93101000000007, 4.499603999999977], [111.93089700000013, 4.499520000000132], [111.93089700000013, 4.499266000000091], [111.93100899999996, 4.499181000000135], [111.93089700000013, 4.4990960000000655], [111.93089600000002, 4.498968999999988], [111.93106699999998, 4.498968000000104], [111.93112200000007, 4.498927000000094], [111.93106699999998, 4.498884999999973], [111.93089600000002, 4.498884999999973], [111.93089600000002, 4.498672000000113], [111.93112100000002, 4.498502000000087], [111.93112100000002, 4.498375999999951], [111.93095299999999, 4.498375999999951], [111.93089600000002, 4.4983329999999455], [111.93123300000002, 4.498078000000021], [111.9311780000001, 4.49803600000007], [111.93084000000005, 4.498037000000011], [111.93078300000013, 4.497994000000006], [111.93084000000005, 4.4979510000000005], [111.93095299999999, 4.4979510000000005], [111.93100800000008, 4.49790900000005], [111.93095299999999, 4.4978680000000395], [111.93084000000005, 4.4978680000000395], [111.93078200000002, 4.49782399999998], [111.93084000000005, 4.497780999999975], [111.9311780000001, 4.497780000000034], [111.93123300000002, 4.497739000000024], [111.93112000000008, 4.497655000000009], [111.93112000000008, 4.497484999999983], [111.93123200000014, 4.497400000000027], [111.93112000000008, 4.497316000000012], [111.93111900000002, 4.4971459999999865], [111.93123200000014, 4.497059999999976], [111.93111900000002, 4.4969760000001315], [111.93111900000002, 4.496806000000106], [111.93123200000014, 4.4967209999999795], [111.93111900000002, 4.496637000000135], [111.93111900000002, 4.496424000000104], [111.93128900000005, 4.496424000000104], [111.93134399999997, 4.49638200000004], [111.93128900000005, 4.496340000000089], [111.93111800000014, 4.496340000000089], [111.93111800000014, 4.496170999999947], [111.93083800000005, 4.496172000000058], [111.93078000000003, 4.496127999999942], [111.93083800000005, 4.496084999999937], [111.931288, 4.496084000000053], [111.93134300000008, 4.496043000000043], [111.931288, 4.496002000000033], [111.93083800000005, 4.496003000000087], [111.93078000000003, 4.495959000000028], [111.93083800000005, 4.4959160000000224], [111.931063, 4.495915000000082], [111.93111800000014, 4.495874000000072], [111.931063, 4.495832000000007], [111.93072500000011, 4.4958330000000615], [111.930612, 4.495747999999935], [111.92914700000011, 4.49574999999993], [111.92903500000006, 4.495666000000085], [111.92723200000012, 4.49566800000008], [111.927119, 4.4955830000000105], [111.92587999999995, 4.495584999999949], [111.92582199999998, 4.49554100000006], [111.92587999999995, 4.495498000000055], [111.92723200000012, 4.49549600000006], [111.92734399999995, 4.495412000000044], [111.928246, 4.49541099999999], [111.928358, 4.49532499999998], [111.929034, 4.49532499999998], [111.92914700000011, 4.49523900000014], [111.92970999999994, 4.49523900000014], [111.92982300000006, 4.495154000000014], [111.930273, 4.49515300000013], [111.93038600000011, 4.495069000000115], [111.930724, 4.495068000000003], [111.93089099999997, 4.494940999999983], [111.93077899999997, 4.494857000000138], [111.93083600000006, 4.494813000000022], [111.930949, 4.494813000000022], [111.93100400000009, 4.494771000000128], [111.930949, 4.494730000000118], [111.93083600000006, 4.494730000000118], [111.93077800000003, 4.494687000000113], [111.93089099999997, 4.494601999999986], [111.93089099999997, 4.494517000000087], [111.93100300000003, 4.494432000000131], [111.93089099999997, 4.494348000000116], [111.93089000000009, 4.49417800000009], [111.93100300000003, 4.494092999999964], [111.93089000000009, 4.494009000000119], [111.93089000000009, 4.493669999999952], [111.93100199999992, 4.493583999999942], [111.93100199999992, 4.4934990000000425], [111.93088899999998, 4.493415000000027], [111.93088899999998, 4.493330000000071], [111.93100199999992, 4.493245000000002], [111.93088899999998, 4.493160000000046], [111.93088899999998, 4.4930760000000305], [111.93100100000004, 4.492991000000131], [111.93088899999998, 4.492906000000005], [111.93088899999998, 4.4927789999999845], [111.93117199999995, 4.492778000000044], [111.93122599999998, 4.492737000000034], [111.93117100000006, 4.49269500000014], [111.93094600000012, 4.49269500000014], [111.9308880000001, 4.492652000000135], [111.93094600000012, 4.4926090000001295], [111.931059, 4.492608000000018], [111.93111399999998, 4.492567000000008], [111.931059, 4.492525000000114], [111.93094600000012, 4.492525000000114], [111.9308880000001, 4.492482000000109], [111.93094600000012, 4.492439000000104], [111.93117100000006, 4.492439000000104], [111.93122599999998, 4.492396999999983], [111.93117100000006, 4.4923559999999725], [111.93094600000012, 4.4923559999999725], [111.9308880000001, 4.492313000000138], [111.93094600000012, 4.4922690000000784], [111.93105800000012, 4.4922690000000784], [111.93111300000004, 4.492228000000011], [111.93105800000012, 4.4921860000001175], [111.93094500000001, 4.4921860000001175], [111.9308880000001, 4.492143000000112], [111.93094500000001, 4.492100000000107], [111.93117100000006, 4.492100000000107], [111.93122599999998, 4.492057999999986], [111.93117100000006, 4.492016999999976], [111.93099999999993, 4.492016999999976], [111.93099999999993, 4.4917610000001105], [111.93116999999995, 4.4917610000001105], [111.9312250000001, 4.491719000000046], [111.93116999999995, 4.491677000000095], [111.93099999999993, 4.491677999999979], [111.93099900000004, 4.491421999999943], [111.93116999999995, 4.491421000000059], [111.9312250000001, 4.491380000000049], [111.93116999999995, 4.491338000000098], [111.93099900000004, 4.491338000000098], [111.93099900000004, 4.491082000000063], [111.93116900000007, 4.491082000000063], [111.93122399999999, 4.4910410000000525], [111.93116900000007, 4.490998999999931], [111.93099900000004, 4.490998999999931], [111.93099900000004, 4.490787000000012], [111.93111100000004, 4.490702000000056], [111.93099799999993, 4.490616999999986], [111.93099799999993, 4.490447000000131], [111.93111100000004, 4.490362000000005], [111.93105600000013, 4.4903209999999945], [111.93094300000001, 4.4903209999999945], [111.93088500000005, 4.490277999999989], [111.93099799999993, 4.490193000000033], [111.93099700000005, 4.48942999999997], [111.93110999999999, 4.489345000000071], [111.93099700000005, 4.489260000000115], [111.930996, 4.488920999999948], [111.9311090000001, 4.488836000000049], [111.930996, 4.488750999999922], [111.930996, 4.488666000000023], [111.9311090000001, 4.488581000000067], [111.93105399999996, 4.488540999999998], [111.93060300000013, 4.488540999999998], [111.93049000000002, 4.488625000000013], [111.92936400000013, 4.488627000000008], [111.92925100000002, 4.488712000000078], [111.92722300000008, 4.4887149999999565], [111.92711100000002, 4.488800000000083], [111.92496999999997, 4.488802999999962], [111.92485700000009, 4.488718000000063], [111.92271700000009, 4.4887200000000576], [111.92265900000012, 4.488677000000052], [111.92271700000009, 4.488634000000047], [111.92350499999992, 4.488633000000107], [111.92361800000003, 4.488548000000037], [111.92463200000009, 4.488547000000096], [111.92474399999998, 4.488462000000027], [111.92485700000009, 4.488547000000096], [111.92496999999997, 4.488462000000027], [111.92620900000003, 4.488460000000032], [111.92632100000003, 4.488375000000076], [111.92778600000014, 4.488373000000081], [111.92789900000002, 4.488288000000011], [111.92947600000014, 4.488286000000016], [111.92958800000002, 4.4882010000000605], [111.93094000000013, 4.488200000000006], [111.93105300000008, 4.48811500000005], [111.93127800000002, 4.488113999999996], [111.93133299999994, 4.488072999999986], [111.93127800000002, 4.488031000000035], [111.93071499999996, 4.488031999999976], [111.930657, 4.48798800000003], [111.93071499999996, 4.487946000000136], [111.93105300000008, 4.487945000000025], [111.931108, 4.4879040000000145], [111.93105300000008, 4.487862000000121], [111.93094000000013, 4.487862000000121], [111.93088199999994, 4.4878190000001155], [111.93094000000013, 4.48777600000011], [111.93127800000002, 4.487774999999999], [111.93133299999994, 4.487733000000105], [111.93127800000002, 4.487692000000095], [111.93105199999997, 4.487692000000095], [111.93099500000005, 4.48764900000009], [111.93110700000011, 4.487565000000018], [111.930994, 4.487480000000119], [111.93105199999997, 4.487436000000002], [111.93116500000008, 4.487436000000002], [111.93122000000005, 4.4873940000001085], [111.93110700000011, 4.487308999999982], [111.93110700000011, 4.487140000000068], [111.93121900000011, 4.487055000000112], [111.93110700000011, 4.486970000000042], [111.931106, 4.486801000000071], [111.93121900000011, 4.486715999999944], [111.931106, 4.486631000000045], [111.931106, 4.48654700000003], [111.93121900000011, 4.486462000000074], [111.93116300000008, 4.48642000000001], [111.93099300000006, 4.48642000000001], [111.93099300000006, 4.486123000000077], [111.93110500000012, 4.486038000000008], [111.93099300000006, 4.4859539999999924], [111.930992, 4.4858690000000365], [111.93087999999995, 4.485784000000137], [111.93093700000009, 4.485740000000021], [111.93104999999997, 4.485740000000021], [111.93110500000012, 4.485698000000127], [111.93104999999997, 4.485657000000117], [111.93087999999995, 4.485657000000117], [111.93087900000006, 4.485487999999975], [111.93037400000003, 4.48548900000003], [111.93026100000009, 4.4855739999999855], [111.93014799999997, 4.48548900000003], [111.92935999999997, 4.485490000000141], [111.92924700000003, 4.48557500000004], [111.92913400000009, 4.485490000000141], [111.92902200000009, 4.485490000000141], [111.92890899999998, 4.4855759999999805], [111.92879600000003, 4.4854910000000245], [111.92800800000003, 4.485492000000136], [111.92789500000009, 4.485577000000035], [111.92778199999998, 4.485492000000136], [111.92766999999992, 4.485492000000136], [111.92755699999998, 4.485577000000035], [111.92744400000004, 4.485492000000136], [111.92733200000004, 4.485492000000136], [111.9272190000001, 4.485577999999975], [111.92710599999998, 4.4854930000000195], [111.92699399999998, 4.4854930000000195], [111.92688100000004, 4.485577999999975], [111.92676899999998, 4.4854930000000195], [111.92665600000004, 4.485577999999975], [111.92654299999992, 4.48557900000003], [111.9264310000001, 4.485494000000131], [111.92631799999998, 4.48557900000003], [111.92620500000004, 4.48557900000003], [111.92609300000004, 4.485494000000131], [111.9259800000001, 4.48557900000003], [111.92586699999998, 4.48557900000003], [111.92575499999992, 4.485494000000131], [111.92564199999998, 4.485580000000141], [111.92552900000004, 4.485580000000141], [111.92541700000004, 4.485495000000014], [111.9253040000001, 4.485495000000014], [111.92519099999998, 4.485580000000141], [111.92507899999998, 4.485495000000014], [111.92496600000004, 4.485495000000014], [111.9248530000001, 4.485581000000025], [111.92474100000004, 4.485496000000069], [111.92462799999993, 4.485496000000069], [111.92451499999999, 4.485581000000025], [111.92440299999998, 4.485496000000069], [111.92429000000004, 4.485496000000069], [111.9241770000001, 4.485582000000079], [111.9240650000001, 4.485497000000009], [111.92395199999999, 4.485582000000079], [111.92383900000004, 4.485582000000079], [111.92372699999999, 4.485497000000009], [111.92361400000004, 4.485582000000079], [111.92350099999993, 4.485582000000079], [111.9233890000001, 4.485497000000009], [111.92327599999999, 4.485498000000064], [111.92316300000005, 4.48558300000002], [111.92305100000004, 4.485498000000064], [111.9229380000001, 4.485498000000064], [111.92282499999999, 4.48558300000002], [111.92271299999993, 4.485498000000064], [111.92259999999999, 4.485498000000064], [111.9224870000001, 4.485584000000074], [111.92237500000005, 4.485499000000004], [111.9222620000001, 4.485584000000074], [111.92214899999999, 4.485584000000074], [111.92203699999999, 4.485499000000004], [111.92192400000005, 4.485499000000004], [111.9218110000001, 4.485585000000015], [111.92169900000005, 4.485500000000059], [111.92158599999993, 4.485500000000059], [111.9214740000001, 4.485585000000015], [111.92136099999999, 4.485500000000059], [111.92124800000005, 4.485585000000015], [111.92113600000005, 4.485585000000015], [111.9210230000001, 4.485500000000059], [111.92090999999999, 4.485500999999999], [111.92079799999993, 4.485586000000069], [111.92068499999999, 4.485500999999999], [111.9205720000001, 4.485500999999999], [111.92046000000005, 4.485586000000069], [111.9203470000001, 4.485500999999999], [111.920234, 4.485500999999999], [111.92012199999999, 4.4855870000000095], [111.92000900000005, 4.485502000000054], [111.91989600000011, 4.485502000000054], [111.91978400000005, 4.4855870000000095], [111.91967099999994, 4.485502000000054], [111.91955800000005, 4.485502000000054], [111.919446, 4.4855870000000095], [111.91933300000005, 4.485502999999937], [111.91448800000012, 4.485509000000093], [111.91437600000006, 4.485594000000049], [111.91426299999995, 4.485509000000093], [111.91415, 4.485509000000093], [111.914038, 4.485594000000049], [111.91392500000006, 4.485509000000093], [111.91381200000012, 4.485510000000033], [111.91370000000012, 4.485595000000103], [111.913587, 4.485510000000033], [111.91347400000006, 4.485595000000103], [111.913362, 4.485595000000103], [111.91324900000006, 4.485510000000033], [111.91313700000006, 4.485595000000103], [111.91195200000004, 4.485597000000098], [111.91195099999999, 4.484491999999989], [111.91212100000001, 4.484491999999989], [111.91223400000013, 4.484407000000033], [111.91347299999995, 4.484405999999979], [111.91358600000007, 4.484321000000023], [111.91482500000012, 4.484320000000139], [111.91493700000012, 4.484235000000012], [111.91651499999995, 4.4842330000000175], [111.916627, 4.484147000000007], [111.91933100000006, 4.4841440000001285], [111.919444, 4.484060000000113], [111.92654099999993, 4.484051000000079], [111.92665400000004, 4.484135000000094], [111.92845700000004, 4.484132000000045], [111.92856900000004, 4.484216999999944], [111.93025900000009, 4.484214999999949], [111.93037200000003, 4.484300000000076], [111.93099000000001, 4.484299000000021], [111.93099000000001, 4.484173000000055], [111.93110300000012, 4.484087000000045], [111.93099000000001, 4.48400300000003], [111.93099000000001, 4.483918000000074], [111.93110300000012, 4.483833000000004], [111.93099000000001, 4.483748000000048], [111.93098900000012, 4.483494000000007], [111.93110200000001, 4.4834090000000515], [111.93098900000012, 4.483325000000036], [111.93098800000001, 4.4823070000000484], [111.93087500000007, 4.482222999999976], [111.93087500000007, 4.482138000000077], [111.93098800000001, 4.482052999999951], [111.93087500000007, 4.481968000000052], [111.93087400000002, 4.481629000000055], [111.9305940000001, 4.481418000000019], [111.93036899999998, 4.481418000000019], [111.93025600000004, 4.481334000000004], [111.93002999999999, 4.481334000000004], [111.92991799999993, 4.481249999999989], [111.92980499999999, 4.481249999999989], [111.92974700000002, 4.481206000000043], [111.92980499999999, 4.481163000000038], [111.93025600000004, 4.481161999999983], [111.93036800000004, 4.481078000000139], [111.93081900000004, 4.4810770000000275], [111.9309310000001, 4.480992000000128], [111.9313820000001, 4.480992000000128], [111.93154900000008, 4.480865000000108], [111.93149399999999, 4.480822999999987], [111.9313820000001, 4.480908000000113], [111.93126899999999, 4.480908999999997], [111.93109900000013, 4.480781000000036], [111.93115600000004, 4.480738000000031], [111.93132400000013, 4.480738000000031], [111.93132400000013, 4.48061100000001], [111.93143600000013, 4.480526000000111], [111.93138100000004, 4.48048399999999], [111.93126899999999, 4.480569000000116], [111.93109800000008, 4.48057], [111.93109800000008, 4.480442000000096], [111.93143600000013, 4.4801870000001145], [111.93138100000004, 4.480144999999993], [111.9312680000001, 4.48023000000012], [111.93121100000002, 4.4801870000001145], [111.93121000000008, 4.480017999999973], [111.93132300000002, 4.479933000000074], [111.93121000000008, 4.479848000000118], [111.93121000000008, 4.479593000000023], [111.93132200000014, 4.479508000000067], [111.93121000000008, 4.479424000000051], [111.93120800000008, 4.478237000000092], [111.93132100000003, 4.4781520000001365], [111.93126600000011, 4.478111000000126], [111.93109499999997, 4.478111000000126], [111.93109499999997, 4.4778550000000905], [111.931265, 4.4778550000000905], [111.93132000000014, 4.47781300000014], [111.931265, 4.4777720000001295], [111.93109499999997, 4.4777720000001295], [111.93109499999997, 4.477516000000094], [111.931265, 4.477516000000094], [111.93132000000014, 4.477473999999972], [111.931265, 4.4774320000000785], [111.93109400000009, 4.477432999999962], [111.93109400000009, 4.477263000000107], [111.93092700000011, 4.477263000000107], [111.93087000000003, 4.477219000000048], [111.93092600000006, 4.477177000000097], [111.93126400000011, 4.477176000000043], [111.93131900000003, 4.4771350000000325], [111.93126400000011, 4.477093000000082], [111.93092600000006, 4.477094000000022], [111.93086899999992, 4.477050000000077], [111.93092600000006, 4.4770070000000715], [111.93115200000011, 4.4770070000000715], [111.93120700000003, 4.476965000000007], [111.931151, 4.476923000000056], [111.93081300000011, 4.47692399999994], [111.93070100000006, 4.476839999999925], [111.93013700000012, 4.476839999999925], [111.93002500000011, 4.47675600000008], [111.92957400000006, 4.47675600000008], [111.92946099999995, 4.47667100000001], [111.92889800000012, 4.476672000000065], [111.928785, 4.476586999999995], [111.92822200000012, 4.476588000000049], [111.928109, 4.476504000000034], [111.92765800000001, 4.476504000000034], [111.92754599999995, 4.476420000000019], [111.92698200000001, 4.476420000000019], [111.92687000000001, 4.476335000000063], [111.92630600000007, 4.476336000000003], [111.92619400000001, 4.4762510000000475], [111.92563000000007, 4.476251999999988], [111.92551700000013, 4.476167999999916], [111.92484200000007, 4.476169000000027], [111.92472900000013, 4.476084000000071], [111.92416500000002, 4.476085000000012], [111.92405299999996, 4.476000000000056], [111.92348900000002, 4.476000000000056], [111.92337700000002, 4.475916000000041], [111.92270100000002, 4.475916000000041], [111.92258800000008, 4.475832000000025], [111.92202500000002, 4.4758330000001365], [111.92191200000013, 4.47574800000001], [111.92134900000008, 4.475749000000064], [111.92123600000014, 4.475663999999995], [111.92067200000002, 4.475665000000049], [111.920502, 4.475536999999974], [111.92050100000006, 4.474901000000102], [111.92100900000003, 4.474899999999991], [111.92112200000014, 4.474815000000092], [111.92168499999997, 4.474813999999981], [111.92179800000008, 4.474729000000082], [111.92236100000014, 4.4747279999999705], [111.92247400000008, 4.474644000000126], [111.92292400000002, 4.474643000000071], [111.92303700000014, 4.4745580000001155], [111.92348800000013, 4.4745580000001155], [111.92359999999996, 4.474473000000046], [111.92416300000002, 4.474472000000105], [111.92427600000013, 4.474387000000036], [111.92472700000013, 4.474386000000095], [111.92483900000002, 4.47430200000008], [111.92529000000002, 4.474301000000025], [111.92540200000002, 4.4742160000000695], [111.92596599999996, 4.474215000000015], [111.92607800000002, 4.474130000000059], [111.92652900000002, 4.474130000000059], [111.92664100000007, 4.474044000000049], [111.92709200000007, 4.474044000000049], [111.92720500000001, 4.473960000000034], [111.92776800000007, 4.473958999999979], [111.92788000000007, 4.473874000000023], [111.92833100000007, 4.47387300000014], [111.92844400000001, 4.473788000000013], [111.92889400000013, 4.473787000000129], [111.92900700000007, 4.473702000000003], [111.92945800000007, 4.473702000000003], [111.92957000000013, 4.473617000000104], [111.93013299999996, 4.473617000000104], [111.93024600000007, 4.473531000000094], [111.93069700000012, 4.473531000000094], [111.93092200000007, 4.473361000000011], [111.93125999999995, 4.4733600000001275], [111.9313150000001, 4.473319000000117], [111.93125999999995, 4.473278000000107], [111.93103400000007, 4.473278000000107], [111.9309760000001, 4.473235000000102], [111.93108900000004, 4.4731499999999755], [111.9309760000001, 4.4730650000000765], [111.93103400000007, 4.473022000000071], [111.93125900000007, 4.473022000000071], [111.93131399999999, 4.4729800000001205], [111.93125900000007, 4.47293900000011], [111.93080800000007, 4.47293900000011], [111.93075099999993, 4.472896000000105], [111.93080800000007, 4.472852000000046], [111.93103400000007, 4.472852000000046], [111.93108900000004, 4.472810000000095], [111.93097699999998, 4.47272600000008], [111.93103300000001, 4.472683000000075], [111.93114600000013, 4.472683000000075], [111.93120100000004, 4.472640999999953], [111.93108799999993, 4.472556000000054], [111.93108799999993, 4.472386000000029], [111.93120100000004, 4.472302000000013], [111.93108799999993, 4.472217000000057], [111.93108799999993, 4.472047000000032], [111.93119999999999, 4.471963000000017], [111.93108700000005, 4.471878000000061], [111.93108700000005, 4.471708000000035], [111.93119999999999, 4.471623000000136], [111.93114500000001, 4.471582000000126], [111.9309740000001, 4.471582000000126], [111.9309740000001, 4.471453999999994], [111.930861, 4.471369999999979], [111.93091900000002, 4.471326000000033], [111.93114400000013, 4.471326000000033], [111.93119900000005, 4.471284000000139], [111.93114400000013, 4.471243000000129], [111.93091900000002, 4.471243000000129], [111.930861, 4.471200000000124], [111.9309740000001, 4.4711149999999975], [111.93086200000005, 4.471030999999982], [111.93091900000002, 4.470987000000093], [111.93114400000013, 4.470987000000093], [111.93119900000005, 4.470944999999972], [111.93114400000013, 4.470904000000132], [111.930861, 4.470904000000132], [111.930861, 4.470775000000117], [111.930973, 4.470691000000102], [111.93091800000008, 4.4706500000000915], [111.93080600000008, 4.470734000000107], [111.93074800000005, 4.470691000000102], [111.93074800000005, 4.470605999999975], [111.93086000000011, 4.470521000000076], [111.93074800000005, 4.47043600000012], [111.93074800000005, 4.470352000000105], [111.93086000000011, 4.470267000000035], [111.93080499999996, 4.470225999999968], [111.93063500000011, 4.470225999999968], [111.93063400000005, 4.470055999999943], [111.93024200000013, 4.470055999999943], [111.93012900000002, 4.469972000000098], [111.92945300000002, 4.469973000000039], [111.92934000000008, 4.469888000000083], [111.92866400000008, 4.469889000000023], [111.92855099999997, 4.469804000000067], [111.92787500000003, 4.469804999999951], [111.92776299999997, 4.469720999999936], [111.92719900000003, 4.469722000000047], [111.92708700000003, 4.469637000000091], [111.92629800000009, 4.469638000000032], [111.92618499999998, 4.469553000000076], [111.92539699999998, 4.4695540000000165], [111.92528400000003, 4.4694690000000605], [111.92460800000009, 4.469469999999944], [111.92449499999998, 4.469385999999929], [111.92381899999998, 4.46938700000004], [111.92370600000004, 4.469302000000084], [111.92291800000004, 4.469303000000025], [111.9228050000001, 4.469218000000069], [111.92212899999993, 4.46921900000001], [111.92201599999999, 4.469134000000054], [111.92122799999999, 4.4691349999999375], [111.92111500000004, 4.469050999999922], [111.92038100000008, 4.469052000000033], [111.92038100000008, 4.468541000000016], [111.92145200000004, 4.468540000000132], [111.92156499999999, 4.468455000000006], [111.92302899999999, 4.468453000000011], [111.9231420000001, 4.468368000000112], [111.92471900000004, 4.468366000000117], [111.92483199999992, 4.46828099999999], [111.92618400000009, 4.4682789999999954], [111.92629599999992, 4.468194000000096], [111.92776099999998, 4.468192000000101], [111.92787300000003, 4.468108000000086], [111.92933800000009, 4.468106000000091], [111.92944999999997, 4.468020999999965], [111.93069000000003, 4.46801899999997], [111.93080200000009, 4.467934000000071], [111.93125300000008, 4.467934000000071], [111.931308, 4.467891999999949], [111.93125300000008, 4.46785100000011], [111.93068899999997, 4.46785100000011], [111.93063200000006, 4.467809000000045], [111.93068899999997, 4.4677650000000995], [111.93102700000003, 4.4677650000000995], [111.931082, 4.467723000000035], [111.93102700000003, 4.467682000000025], [111.93080200000009, 4.467682000000025], [111.93074400000006, 4.46763900000002], [111.93080200000009, 4.467595000000074], [111.93125200000003, 4.467595000000074], [111.93130700000012, 4.467553000000009], [111.93125200000003, 4.467511000000059], [111.93091399999992, 4.467511999999942], [111.930857, 4.467468999999937], [111.93091399999992, 4.467425999999932], [111.93102700000003, 4.467425999999932], [111.931082, 4.467384000000038], [111.93102700000003, 4.467341999999917], [111.93091399999992, 4.467343000000028], [111.93085600000012, 4.467299000000082], [111.93091399999992, 4.467256000000077], [111.93125200000003, 4.467255000000023], [111.93130700000012, 4.467214000000013], [111.93125200000003, 4.467172000000062], [111.93108100000006, 4.467172000000062], [111.93108100000006, 4.466959999999972], [111.931194, 4.466875000000016], [111.93108100000006, 4.466791000000001], [111.93108100000006, 4.466620999999975], [111.93119300000012, 4.466535000000135], [111.93108100000006, 4.46645100000012], [111.93108000000001, 4.4662810000000945], [111.93119300000012, 4.466196000000139], [111.93113799999998, 4.466156000000012], [111.93096799999995, 4.466156000000012], [111.93096700000007, 4.466026999999997], [111.93085500000001, 4.465942000000098], [111.93091199999992, 4.465899000000093], [111.93102500000003, 4.465899000000093], [111.93108000000001, 4.4658580000000825], [111.93102500000003, 4.465816000000132], [111.93091199999992, 4.465817000000072], [111.93085400000012, 4.465773000000127], [111.93096700000007, 4.465688000000057], [111.93085400000012, 4.465603000000101], [111.93091199999992, 4.4655610000000365], [111.93102399999998, 4.465560000000096], [111.93107900000007, 4.465519000000086], [111.93102399999998, 4.465476999999964], [111.93091199999992, 4.465476999999964], [111.93085400000012, 4.465433999999959], [111.93096700000007, 4.46534900000006], [111.93085400000012, 4.465263999999934], [111.93091100000004, 4.465220999999929], [111.93102399999998, 4.465220999999929], [111.93107900000007, 4.465180000000089], [111.93102399999998, 4.4651380000000245], [111.93091100000004, 4.4651380000000245], [111.93085400000012, 4.465095000000019], [111.93091100000004, 4.465051000000074], [111.93102399999998, 4.465051000000074], [111.93107900000007, 4.465010000000063], [111.93102399999998, 4.464967999999999], [111.93085300000001, 4.464967999999999], [111.93085300000001, 4.464840999999922], [111.93096599999996, 4.464755000000139], [111.93096599999996, 4.464670000000012], [111.93107800000001, 4.464585000000056], [111.93107800000001, 4.464501000000041], [111.93096500000007, 4.464416000000142], [111.93096500000007, 4.464331000000016], [111.93107800000001, 4.4642460000001165], [111.93096500000007, 4.464162000000101], [111.93096500000007, 4.4639080000000035], [111.93102199999998, 4.463864000000115], [111.9311350000001, 4.46394800000013], [111.93119000000002, 4.4639080000000035], [111.93107700000007, 4.4638230000001045], [111.93107700000007, 4.463653000000079], [111.93119000000002, 4.463568000000123], [111.93107700000007, 4.463484000000108], [111.93107700000007, 4.463228999999956], [111.93118900000013, 4.463144000000057], [111.93107600000002, 4.463059000000101], [111.93107600000002, 4.462890000000016], [111.93118900000013, 4.46280500000006], [111.93107600000002, 4.462719999999933], [111.93107600000002, 4.4625930000000835], [111.93090799999999, 4.462594000000024], [111.93085000000013, 4.462551000000019], [111.93090799999999, 4.462508000000014], [111.93124600000004, 4.462507000000073], [111.93130099999996, 4.462466000000063], [111.93124600000004, 4.462423999999999], [111.93090799999999, 4.462425000000053], [111.93085000000013, 4.4623809999999935], [111.93090799999999, 4.462337999999988], [111.93101999999999, 4.462337999999988], [111.93107500000013, 4.462296000000038], [111.93101999999999, 4.462255000000027], [111.93079500000005, 4.462256000000139], [111.93073700000002, 4.462212000000022], [111.93079500000005, 4.462169000000017], [111.93124600000004, 4.462168000000133], [111.93130000000008, 4.462126000000012], [111.93124499999999, 4.462085000000002], [111.93079500000005, 4.462085000000002], [111.93073700000002, 4.462041999999997], [111.93079500000005, 4.461998999999992], [111.93101999999999, 4.461998000000108], [111.93107500000013, 4.461957999999981], [111.93101999999999, 4.461916000000031], [111.9306820000001, 4.461916000000031], [111.93056899999999, 4.461832000000015], [111.92978099999999, 4.4618330000001265], [111.92966800000005, 4.461748], [111.92887899999994, 4.461749000000111], [111.928766, 4.461663999999985], [111.927978, 4.461665000000039], [111.92786500000005, 4.461581000000024], [111.927076, 4.461582000000135], [111.92696399999994, 4.4614970000000085], [111.926288, 4.46149800000012], [111.92617500000006, 4.461412999999993], [111.92549900000006, 4.461414000000104], [111.92538599999995, 4.461328999999978], [111.92471, 4.461330000000032], [111.92459800000012, 4.461246000000017], [111.92392199999995, 4.461247000000128], [111.92380900000006, 4.461162000000002], [111.92313300000006, 4.461163000000113], [111.92302000000012, 4.461077999999986], [111.92245700000007, 4.461077999999986], [111.92234399999995, 4.460993000000087], [111.92166800000001, 4.460994000000142], [111.92155500000007, 4.460910000000126], [111.92087900000007, 4.46091100000001], [111.92076700000007, 4.460826000000111], [111.9204840000001, 4.460826999999995], [111.92048299999999, 4.4605710000001295], [111.92189300000013, 4.460569000000135], [111.92200500000001, 4.460484000000065], [111.92369500000001, 4.46048200000007], [111.92380800000012, 4.46039600000006], [111.92561, 4.460394000000065], [111.92572300000012, 4.4603100000000495], [111.93090500000005, 4.46030300000001], [111.93096000000003, 4.460262], [111.93084700000009, 4.460177000000044], [111.93084700000009, 4.460091999999918], [111.93090500000005, 4.46004900000014], [111.931018, 4.460132999999985], [111.93107300000014, 4.460091000000034], [111.93084700000009, 4.459923000000003], [111.93084700000009, 4.459793999999988], [111.93101700000011, 4.459793999999988], [111.93107200000003, 4.459752000000037], [111.93101700000011, 4.459711000000027], [111.93084700000009, 4.459711000000027], [111.93084700000009, 4.459583000000123], [111.93095899999992, 4.459497999999996], [111.93095899999992, 4.459413000000097], [111.93084599999997, 4.459329000000025], [111.93084599999997, 4.459159], [111.93095899999992, 4.459074000000101], [111.93084599999997, 4.458990000000085], [111.93084599999997, 4.45882000000006], [111.93095800000003, 4.458735000000104], [111.93084500000009, 4.4586510000000885], [111.93084500000009, 4.458183000000076], [111.93124000000006, 4.458183000000076], [111.93129500000003, 4.458141000000012], [111.93124000000006, 4.458099000000061], [111.930902, 4.458099999999945], [111.93084500000009, 4.45805699999994], [111.930902, 4.458013999999935], [111.93101500000012, 4.458013999999935], [111.93107000000003, 4.457972000000041], [111.93101500000012, 4.4579310000000305], [111.930902, 4.4579310000000305], [111.93084399999998, 4.457887000000085], [111.930902, 4.45784400000008], [111.93112699999995, 4.45784400000008], [111.93118200000009, 4.457802000000015], [111.93112699999995, 4.457760000000064], [111.930902, 4.457761000000005], [111.93084399999998, 4.457718], [111.930902, 4.457674999999995], [111.93101500000012, 4.457674999999995], [111.93106899999998, 4.457633000000044], [111.93101400000006, 4.457590999999979], [111.930902, 4.457592000000034], [111.93084399999998, 4.457547999999974], [111.930902, 4.45750500000014], [111.93112699999995, 4.4575040000000286], [111.93118200000009, 4.457463000000018], [111.93112699999995, 4.457421000000124], [111.93101400000006, 4.457421000000124], [111.93095600000004, 4.457379000000003], [111.93106899999998, 4.457294000000047], [111.93095600000004, 4.4572089999999776], [111.93101400000006, 4.457165000000032], [111.93112699999995, 4.457165000000032], [111.93118099999998, 4.457124000000022], [111.93112600000006, 4.457082000000128], [111.93095600000004, 4.457082000000128], [111.93095600000004, 4.456955000000107], [111.93106899999998, 4.456869000000097], [111.93095600000004, 4.456785000000082], [111.93101300000012, 4.456742000000077], [111.93112600000006, 4.456742000000077], [111.93118099999998, 4.456700000000126], [111.93112600000006, 4.456659000000116], [111.93095600000004, 4.456659000000116], [111.93095499999993, 4.45640300000008], [111.93112600000006, 4.45640300000008], [111.93118099999998, 4.456361000000129], [111.93112500000001, 4.4563190000000645], [111.93095499999993, 4.456320000000119], [111.93095499999993, 4.456150000000093], [111.93078700000007, 4.456150000000093], [111.93072999999998, 4.456107000000088], [111.93078700000007, 4.456064000000083], [111.93112500000001, 4.456063000000029], [111.9311800000001, 4.456021999999962], [111.93112500000001, 4.455980000000068], [111.93078700000007, 4.455980999999952], [111.9307290000001, 4.455937000000063], [111.93078700000007, 4.4558940000000575], [111.93090000000001, 4.4558940000000575], [111.93095499999993, 4.455851999999936], [111.93090000000001, 4.455810000000042], [111.93067399999995, 4.4558110000000966], [111.93061599999999, 4.455768000000091], [111.93067399999995, 4.455725000000086], [111.93112500000001, 4.455724000000032], [111.9311800000001, 4.455683000000022], [111.93112500000001, 4.455641000000071], [111.93067399999995, 4.455642000000012], [111.93061599999999, 4.455598000000066], [111.93067399999995, 4.455555000000061], [111.93089900000012, 4.4555540000000065], [111.93095400000004, 4.455512999999996], [111.93089900000012, 4.4554710000000455], [111.92605500000008, 4.45547700000003], [111.92594200000013, 4.455563000000041], [111.92583000000008, 4.455478000000085], [111.92571699999996, 4.455478000000085], [111.92560400000008, 4.455563000000041], [111.92549200000002, 4.455478000000085], [111.92537900000008, 4.455478000000085], [111.92526599999997, 4.455563000000041], [111.92515400000013, 4.455479000000025], [111.92504100000002, 4.455564000000095], [111.92492800000008, 4.455564000000095], [111.92481600000002, 4.455479000000025], [111.92470300000014, 4.455479000000025], [111.92459000000002, 4.455564000000095], [111.92447800000014, 4.455479000000025], [111.91935000000007, 4.4554860000000645], [111.91935000000007, 4.455230000000029], [111.91952000000009, 4.455230000000029], [111.91963300000003, 4.455145000000073], [111.92030899999997, 4.455144000000018], [111.92042100000003, 4.4550590000000625], [111.92109699999997, 4.455058000000008], [111.92120999999992, 4.454973000000052], [111.92199900000003, 4.454971999999998], [111.92211100000003, 4.454887000000042], [111.92312500000008, 4.454885999999988], [111.92323800000003, 4.4548019999999156], [111.92447700000008, 4.4547999999999774], [111.92458900000008, 4.4547150000000215], [111.92650500000002, 4.454711999999972], [111.92661700000002, 4.454627000000016], [111.92875800000007, 4.454625000000021], [111.92887000000007, 4.454709000000037], [111.92909599999996, 4.454709000000037], [111.9291510000001, 4.454666999999972], [111.92909599999996, 4.4546260000001325], [111.92887000000007, 4.4546260000001325], [111.92881200000011, 4.454583000000127], [111.92892500000005, 4.454499000000112], [111.92892500000005, 4.454370000000097], [111.92909500000007, 4.454370000000097], [111.92914999999999, 4.454327999999975], [111.92909500000007, 4.454287000000136], [111.92892500000005, 4.454287000000136], [111.92892399999994, 4.454074000000105], [111.92903700000005, 4.453988999999979], [111.92892399999994, 4.45390400000008], [111.92892399999994, 4.453862000000129], [111.92892399999994, 4.453735000000108], [111.92903700000005, 4.453650000000039], [111.92892399999994, 4.453565000000083], [111.92892300000005, 4.453226000000086], [111.928811, 4.453142000000071], [111.92881000000011, 4.4526330000000485], [111.92898000000014, 4.452504999999974], [111.92988100000008, 4.452504000000033], [111.92999400000002, 4.452419000000134], [111.93078300000013, 4.452418000000023], [111.93089500000013, 4.452332000000013], [111.93123300000002, 4.452332000000013], [111.931288, 4.452290000000119], [111.93123300000002, 4.4522490000001085], [111.93078200000002, 4.4522490000001085], [111.93072500000011, 4.452206999999987], [111.93078200000002, 4.452163000000098], [111.93112000000008, 4.452163000000098], [111.93117500000005, 4.452120999999977], [111.93112000000008, 4.452080000000137], [111.93100800000008, 4.452080000000137], [111.93095000000005, 4.452037000000132], [111.93100699999997, 4.451993000000073], [111.93123300000002, 4.451993000000073], [111.931288, 4.451951000000122], [111.93123300000002, 4.451910000000112], [111.93089500000013, 4.451910000000112], [111.93083699999994, 4.45186799999999], [111.93089500000013, 4.4518240000001015], [111.93100699999997, 4.4518240000001015], [111.93106200000011, 4.45178199999998], [111.930949, 4.451697000000081], [111.93100699999997, 4.451654000000076], [111.93123200000014, 4.451654000000076], [111.93128700000005, 4.451612000000125], [111.93123200000014, 4.451570000000061], [111.93106200000011, 4.451571000000115], [111.93106200000011, 4.451358000000084], [111.93117399999994, 4.451272999999958], [111.931061, 4.4511889999999426], [111.931061, 4.4510190000000875], [111.93117399999994, 4.450935000000072], [111.931061, 4.450850000000003], [111.931061, 4.45067999999992], [111.93117300000006, 4.450595000000021], [111.93111800000014, 4.450554000000011], [111.93094800000006, 4.450554000000011], [111.93094800000006, 4.45042600000005], [111.93083499999995, 4.45034099999998], [111.93089300000014, 4.450297999999975], [111.93100500000003, 4.450297999999975], [111.93106000000012, 4.450256000000024], [111.930947, 4.450171000000125], [111.930947, 4.4500010000001], [111.93106000000012, 4.449917000000028], [111.93100500000003, 4.4498760000000175], [111.93083400000006, 4.4498760000000175], [111.93083400000006, 4.449747000000002], [111.930947, 4.449662000000103], [111.93083400000006, 4.449578000000088], [111.93083400000006, 4.449408000000062], [111.93094600000012, 4.449323000000106], [111.93083400000006, 4.449239000000091], [111.930833, 4.449027000000115], [111.93066600000003, 4.449027000000115], [111.930608, 4.44898500000005], [111.93066600000003, 4.448942000000045], [111.93100400000009, 4.448941000000104], [111.93105800000012, 4.44889900000004], [111.93100300000003, 4.44885800000003], [111.93032799999992, 4.448859000000084], [111.93021500000003, 4.448773999999958], [111.92953900000003, 4.448775000000069], [111.92942600000009, 4.448689999999942], [111.92874999999992, 4.4486910000000535], [111.92863699999998, 4.448607000000038], [111.92784899999998, 4.4486080000000925], [111.92773600000004, 4.448523000000023], [111.9266090000001, 4.448524000000077], [111.92649700000004, 4.448438999999951], [111.92537000000004, 4.448440999999946], [111.92531200000008, 4.448397000000057], [111.92537000000004, 4.448354999999935], [111.93111500000003, 4.448348000000067], [111.93116999999995, 4.448306000000002], [111.93111500000003, 4.4482640000000515], [111.93089000000009, 4.448264999999992], [111.93083200000007, 4.448221000000046], [111.93094500000001, 4.448135999999977], [111.93083200000007, 4.448051000000021], [111.93089000000009, 4.448009000000127], [111.93111500000003, 4.448008000000016], [111.93116999999995, 4.4479670000000056], [111.93111500000003, 4.447925000000055], [111.93089000000009, 4.447925000000055], [111.93083200000007, 4.44788200000005], [111.93094400000012, 4.44779699999998], [111.93083200000007, 4.447712000000024], [111.93088899999998, 4.447669000000019], [111.93111500000003, 4.447669000000019], [111.93116999999995, 4.447628000000009], [111.93111500000003, 4.447586000000115], [111.93094400000012, 4.447586000000115], [111.93094400000012, 4.447330000000079], [111.93111399999998, 4.447330000000079], [111.93116900000007, 4.447288000000128], [111.93111399999998, 4.447247000000118], [111.93094400000012, 4.447247000000118], [111.93094300000001, 4.446906000000126], [111.93111399999998, 4.446906000000126], [111.93116900000007, 4.446864000000062], [111.93111399999998, 4.446823000000052], [111.93100100000004, 4.446823000000052], [111.93094300000001, 4.446779000000106], [111.93105600000013, 4.446695000000091], [111.93094300000001, 4.446609999999964], [111.93100100000004, 4.446566999999959], [111.93111300000004, 4.446566999999959], [111.93116800000001, 4.446525000000065], [111.93111300000004, 4.446482999999944], [111.93099999999993, 4.446482999999944], [111.93094300000001, 4.446439999999939], [111.93105500000007, 4.446356000000094], [111.93099999999993, 4.446314000000029], [111.9308880000001, 4.446314000000029], [111.93083000000007, 4.446271000000024], [111.93088699999998, 4.446228000000019], [111.93111300000004, 4.4462270000000785], [111.93116800000001, 4.446186000000068], [111.93111300000004, 4.446144000000004], [111.93088699999998, 4.446144000000004], [111.93083000000007, 4.446100999999999], [111.93088699999998, 4.446057999999994], [111.93099999999993, 4.446057999999994], [111.93105500000007, 4.446016999999927], [111.93099999999993, 4.445975000000033], [111.93077499999998, 4.445975000000033], [111.93071699999996, 4.4459320000000275], [111.9307740000001, 4.445889000000022], [111.9312250000001, 4.445888000000139], [111.93128000000002, 4.445846000000017], [111.9312250000001, 4.445805000000007], [111.9307740000001, 4.445805000000007], [111.93071699999996, 4.445762000000002], [111.9307740000001, 4.445718999999997], [111.93099999999993, 4.445718999999997], [111.93105399999996, 4.445677000000046], [111.93099900000004, 4.445636000000036], [111.93021100000004, 4.4456369999999765], [111.9300980000001, 4.445552000000021], [111.92840800000005, 4.4455540000000155], [111.92829499999993, 4.44546900000006], [111.92671800000005, 4.445471000000055], [111.92660599999999, 4.445387000000039], [111.92480300000005, 4.445389999999918], [111.92469000000011, 4.445305000000019], [111.92300000000006, 4.445307000000014], [111.92288800000006, 4.445222000000058], [111.921198, 4.445224000000053], [111.92108500000006, 4.445138999999983], [111.92046400000004, 4.445140000000038], [111.92046400000004, 4.445012000000133], [111.92063400000006, 4.444884000000002], [111.921535, 4.444883000000118], [111.92164800000012, 4.444797999999992], [111.922774, 4.444797000000108], [111.92288699999995, 4.444711999999981], [111.92401400000011, 4.444709999999986], [111.924126, 4.444625000000087], [111.925365, 4.444623999999976], [111.92547800000011, 4.444538000000136], [111.926604, 4.444537000000082], [111.92671699999994, 4.444453000000067], [111.92806900000011, 4.444451000000072], [111.92818100000011, 4.444366000000116], [111.92964599999999, 4.444364000000121], [111.92975800000005, 4.444279000000051], [111.93088500000005, 4.444277000000056], [111.93094000000013, 4.444236000000046], [111.93082700000002, 4.44415100000009], [111.93088500000005, 4.444108000000085], [111.93099700000005, 4.444108000000085], [111.93105199999997, 4.444066000000021], [111.93099700000005, 4.444024999999954], [111.93082700000002, 4.444024999999954], [111.93082700000002, 4.443852999999933], [111.93099700000005, 4.443852999999933], [111.93105199999997, 4.443811000000039], [111.93099700000005, 4.443771000000083], [111.93082700000002, 4.443771000000083], [111.93082600000014, 4.443472999999983], [111.93093900000002, 4.443388000000027], [111.93082600000014, 4.443303000000128], [111.93082600000014, 4.443133999999986], [111.93093800000014, 4.4430490000000304], [111.93082600000014, 4.442964000000131], [111.93082600000014, 4.442837000000111], [111.93133400000005, 4.442836], [111.93138899999997, 4.442794000000106], [111.93133400000005, 4.442753000000096], [111.93088300000005, 4.442753000000096], [111.93082500000003, 4.4427100000000905], [111.93088300000005, 4.442665999999974], [111.930996, 4.442665999999974], [111.93127600000003, 4.442455000000109], [111.93122100000011, 4.442414000000099], [111.93082500000003, 4.442414000000099], [111.93082500000003, 4.442242000000078], [111.93099500000005, 4.442242000000078], [111.931108, 4.442158000000063], [111.93122000000005, 4.442158000000063], [111.93127500000014, 4.442116000000112], [111.93122000000005, 4.442074000000048], [111.93093700000009, 4.442075000000102], [111.93093700000009, 4.441946000000087], [111.93116200000003, 4.441776999999945], [111.93110700000011, 4.441735000000051], [111.93093700000009, 4.441736000000105], [111.93093700000009, 4.44160700000009], [111.93104900000009, 4.441523000000075], [111.93093599999997, 4.441438000000005], [111.930994, 4.441394000000059], [111.93110700000011, 4.441394000000059], [111.93116200000003, 4.441353000000049], [111.93110700000011, 4.441310999999928], [111.93093599999997, 4.441310999999928], [111.93093599999997, 4.441055000000063], [111.931106, 4.441055000000063], [111.93116099999992, 4.441012999999998], [111.931106, 4.440971999999988], [111.93093599999997, 4.440971999999988], [111.93093599999997, 4.440760000000012], [111.93104800000003, 4.440674000000001], [111.93093500000009, 4.440589000000102], [111.93093500000009, 4.440420000000131], [111.93104800000003, 4.440335000000005], [111.93099300000006, 4.440293999999994], [111.93082199999998, 4.440293999999994], [111.93082199999998, 4.44016600000009], [111.93093500000009, 4.440081000000134], [111.930767, 4.439954999999998], [111.93065400000012, 4.439954999999998], [111.93059699999998, 4.4399119999999925], [111.93070900000004, 4.4398270000000934], [111.9305960000001, 4.439741999999967], [111.9305960000001, 4.439657000000068], [111.93065400000012, 4.439615000000117], [111.930767, 4.439698999999962], [111.93087900000006, 4.439698999999962], [111.93093399999998, 4.439657000000068], [111.93087900000006, 4.439615000000117], [111.93070900000004, 4.439616000000058], [111.93070900000004, 4.439488000000097], [111.9305960000001, 4.439403000000027], [111.9305960000001, 4.43927599999995], [111.93076600000012, 4.439275000000066], [111.93087900000006, 4.439359000000081], [111.93093399999998, 4.439318000000071], [111.93076600000012, 4.4391919999999345], [111.93042800000006, 4.439193000000046], [111.93031500000012, 4.43910800000009], [111.929865, 4.43910800000009], [111.92975200000006, 4.43902300000002], [111.92941400000001, 4.4390240000000745], [111.92930100000007, 4.438939000000005], [111.92885100000012, 4.438939000000005], [111.92873800000001, 4.438854999999933], [111.92817499999995, 4.438856000000044], [111.92806200000001, 4.438770999999917], [111.92738600000007, 4.438772000000029], [111.92727300000013, 4.438687000000073], [111.92625900000007, 4.438689000000068], [111.92614600000013, 4.438603999999998], [111.92479500000007, 4.438605000000052], [111.92468199999996, 4.438521000000037], [111.92411900000013, 4.438521999999921], [111.92406100000011, 4.438478999999916], [111.92411800000002, 4.438435000000027], [111.92614600000013, 4.438433000000032], [111.92625900000007, 4.438348000000133], [111.92885000000007, 4.438343999999972], [111.92896200000007, 4.4382600000001275], [111.93121499999995, 4.438257000000021], [111.9312700000001, 4.4382150000001275], [111.93121499999995, 4.438174000000117], [111.93065200000012, 4.438175000000001], [111.9305940000001, 4.438131000000112], [111.93065200000012, 4.438088000000107], [111.93099000000001, 4.438086999999996], [111.93104499999993, 4.438045999999986], [111.93099000000001, 4.438004000000092], [111.93065200000012, 4.4380049999999756], [111.9305940000001, 4.437962000000141], [111.93065200000012, 4.437919000000136], [111.93121499999995, 4.4379180000000815], [111.9312700000001, 4.437876000000131], [111.93121499999995, 4.4378350000001205], [111.93087700000007, 4.4378350000001205], [111.93081900000004, 4.437792000000115], [111.93087700000007, 4.437747999999999], [111.93099000000001, 4.437747999999999], [111.93104400000004, 4.437706999999989], [111.93098900000012, 4.437665000000095], [111.93087700000007, 4.437665000000095], [111.93081900000004, 4.437622999999974], [111.93087700000007, 4.437579000000085], [111.93121499999995, 4.437579000000085], [111.9312700000001, 4.437537000000134], [111.93121499999995, 4.437496000000124], [111.93104400000004, 4.437496000000124], [111.93104400000004, 4.437283000000093], [111.93115600000004, 4.437197999999967], [111.93104400000004, 4.437113000000068], [111.93104299999993, 4.436859000000027], [111.93115600000004, 4.436774000000071], [111.93104299999993, 4.436689000000001], [111.93104299999993, 4.436604999999929], [111.93115600000004, 4.43652000000003], [111.93104299999993, 4.436435000000074], [111.93104299999993, 4.4363500000000045], [111.93092999999999, 4.436265999999989], [111.93098800000001, 4.436222000000043], [111.93110000000007, 4.436222000000043], [111.93115499999999, 4.436179999999979], [111.93110000000007, 4.436139000000139], [111.93092999999999, 4.436139000000139], [111.93092999999999, 4.4359699999999975], [111.93076199999996, 4.4359699999999975], [111.93070399999999, 4.435926999999992], [111.93076199999996, 4.4358830000001035], [111.93110000000007, 4.4358830000001035], [111.93115499999999, 4.435840999999982], [111.93110000000007, 4.435799999999972], [111.9308170000001, 4.435799999999972], [111.9308170000001, 4.435672000000011], [111.9309290000001, 4.435587000000112], [111.93087400000002, 4.435546000000102], [111.93076199999996, 4.435631000000001], [111.93070399999999, 4.435587999999996], [111.93070399999999, 4.435418000000141], [111.930816, 4.435333000000071], [111.93070300000005, 4.435248000000115], [111.93070300000005, 4.434739000000093], [111.93058999999994, 4.4346550000000775], [111.93058999999994, 4.434569999999951], [111.930702, 4.434485000000052], [111.93058999999994, 4.4343999999999255], [111.93058999999994, 4.434316000000081], [111.93075999999996, 4.434187000000065], [111.93109800000008, 4.434187000000065], [111.931153, 4.434145000000001], [111.93109800000008, 4.434103999999991], [111.93053400000014, 4.434103999999991], [111.930477, 4.43406200000004], [111.93053400000014, 4.4340179999999805], [111.93087200000002, 4.4340179999999805], [111.93092700000011, 4.43397600000003], [111.93087200000002, 4.4339350000000195], [111.93064700000002, 4.4339350000000195], [111.93058900000005, 4.433892000000014], [111.93064700000002, 4.4338480000001255], [111.93109699999997, 4.4338480000001255], [111.93115200000011, 4.433806000000004], [111.93109699999997, 4.433764000000053], [111.93075900000008, 4.433764999999994], [111.93070100000006, 4.433721999999989], [111.93075900000008, 4.433678999999984], [111.93087200000002, 4.433678999999984], [111.93092700000011, 4.433637000000033], [111.93087200000002, 4.433596000000023], [111.93075900000008, 4.433596000000023], [111.93070100000006, 4.433552000000134], [111.93075900000008, 4.433509000000129], [111.93109699999997, 4.4335080000000175], [111.93115200000011, 4.433467000000007], [111.93109699999997, 4.433425000000113], [111.93092600000006, 4.433425000000113], [111.93092600000006, 4.433169000000078], [111.93109600000008, 4.433169000000078], [111.931151, 4.433128000000011], [111.93109600000008, 4.433086000000117], [111.93092600000006, 4.433086000000117], [111.93092600000006, 4.432830000000081], [111.93109600000008, 4.432830000000081], [111.931151, 4.43278800000013], [111.93109600000008, 4.4327480000000605], [111.93092600000006, 4.4327480000000605], [111.93092499999995, 4.43257600000004], [111.93109600000008, 4.43257600000004], [111.931151, 4.432534000000089], [111.93109600000008, 4.432493000000079], [111.93092499999995, 4.432493000000079], [111.93092499999995, 4.432237000000043], [111.93109499999997, 4.432237000000043], [111.93115000000012, 4.4321950000000925], [111.93109499999997, 4.432153000000028], [111.93092499999995, 4.432154000000082], [111.93092499999995, 4.4318980000000465], [111.93109499999997, 4.431896999999992], [111.93115000000012, 4.431855999999925], [111.93109499999997, 4.431814000000031], [111.930812, 4.431814999999915], [111.930812, 4.431687000000011], [111.93092400000006, 4.431602000000055], [111.93086899999992, 4.43155999999999], [111.93075700000009, 4.43164500000006], [111.93064399999997, 4.431561000000045], [111.92771500000009, 4.4315639999999235], [111.92760199999998, 4.43164900000005], [111.92399699999999, 4.431654000000094], [111.9238850000001, 4.4315690000000245], [111.92365900000004, 4.4315690000000245], [111.92354700000004, 4.431484000000069], [111.92332099999999, 4.431485000000009], [111.92320800000005, 4.431400999999937], [111.92286999999999, 4.431400999999937], [111.92275799999993, 4.431316000000038], [111.92242000000005, 4.431316999999922], [111.9223070000001, 4.431232000000023], [111.92196900000005, 4.431232000000023], [111.9218560000001, 4.431147000000067], [111.92140599999999, 4.431148000000007], [111.92129300000005, 4.431063999999992], [111.92095499999999, 4.431063999999992], [111.92084200000005, 4.430979000000036], [111.92050399999994, 4.43097999999992], [111.92033400000008, 4.430852000000016], [111.92033300000003, 4.430258000000094], [111.92022000000009, 4.430174000000022], [111.92022000000009, 4.429792000000077], [111.92174200000005, 4.429790000000082], [111.921855, 4.429705000000126], [111.9234320000001, 4.429702999999961], [111.92354399999994, 4.429788000000087], [111.92365700000005, 4.429702000000077], [111.92376999999999, 4.429702000000077], [111.92388200000005, 4.429786999999976], [111.92399499999999, 4.429702000000077], [111.9241080000001, 4.429786999999976], [111.9242200000001, 4.429786999999976], [111.92433300000005, 4.429700999999966], [111.92444599999999, 4.429786000000092], [111.92455799999999, 4.429786000000092], [111.92467099999993, 4.429700999999966], [111.92478400000005, 4.429786000000092], [111.92647299999999, 4.429784000000097], [111.92658599999993, 4.429869000000053], [111.92669900000004, 4.429784000000097], [111.9268110000001, 4.429783000000043], [111.92692400000004, 4.429868000000113], [111.92703699999998, 4.429783000000043], [111.92714899999999, 4.429868000000113], [111.9272620000001, 4.429868000000113], [111.92737500000004, 4.429783000000043], [111.92748700000004, 4.429868000000113], [111.92883900000004, 4.429865999999947], [111.92895199999998, 4.4299499999999625], [111.9290650000001, 4.429865999999947], [111.9291770000001, 4.4298650000000634], [111.92929000000004, 4.429949000000079], [111.92940200000004, 4.4298650000000634], [111.92951499999998, 4.429949000000079], [111.93030400000009, 4.429948000000024], [111.93035900000001, 4.429906999999957], [111.93024700000001, 4.429822999999942], [111.93030400000009, 4.429779000000053], [111.93058400000001, 4.429779000000053], [111.93058300000007, 4.429439000000002], [111.93109200000009, 4.429439000000002], [111.93114700000001, 4.429397000000051], [111.93109200000009, 4.429356000000041], [111.9306410000001, 4.429356000000041], [111.93058300000007, 4.429313000000036], [111.9306410000001, 4.429268999999977], [111.93097899999998, 4.429268999999977], [111.93103400000007, 4.429227000000026], [111.93097899999998, 4.429186000000016], [111.9306410000001, 4.429186000000016], [111.93058300000007, 4.429144000000065], [111.9306410000001, 4.429100000000005], [111.93109100000004, 4.429100000000005], [111.93114600000013, 4.429058000000055], [111.93109100000004, 4.42901599999999], [111.93086600000004, 4.429017000000044], [111.93080800000007, 4.428972999999985], [111.93086600000004, 4.42892999999998], [111.9309780000001, 4.42892999999998], [111.93103300000001, 4.428888000000029], [111.9309780000001, 4.428847000000019], [111.93086600000004, 4.42884800000013], [111.93080800000007, 4.428804000000014], [111.93086600000004, 4.428761000000009], [111.9309780000001, 4.428761000000009], [111.93114600000013, 4.428633999999988], [111.93103300000001, 4.428549999999973], [111.93103300000001, 4.428465000000017], [111.93114500000001, 4.428380000000118], [111.93103300000001, 4.428294999999991], [111.93103200000013, 4.428040000000067], [111.93114500000001, 4.427955000000111], [111.93103200000013, 4.427871000000096], [111.93103200000013, 4.427785999999969], [111.93114500000001, 4.42770100000007], [111.9310900000001, 4.42766000000006], [111.93091900000002, 4.42766000000006], [111.93091900000002, 4.427491000000089], [111.93075099999993, 4.427491000000089], [111.93069500000013, 4.4274480000000835], [111.93075099999993, 4.427404000000024], [111.93108900000004, 4.427404000000024], [111.93114400000013, 4.427362000000073], [111.93108900000004, 4.427320000000009], [111.93075099999993, 4.427321000000063], [111.93069300000013, 4.427277000000004], [111.93075099999993, 4.427235000000053], [111.93086400000004, 4.427235000000053], [111.93091900000002, 4.4271929999999315], [111.93086400000004, 4.427151999999921], [111.93063799999999, 4.427151999999921], [111.93058100000007, 4.4271080000000325], [111.93063799999999, 4.427065000000027], [111.9309760000001, 4.427065000000027], [111.93103100000002, 4.4270230000000765], [111.9309760000001, 4.426981000000012], [111.93063799999999, 4.426982000000066], [111.93058000000002, 4.426938000000007], [111.93063799999999, 4.426896000000056], [111.93086299999999, 4.426896000000056], [111.93091800000008, 4.426853999999992], [111.93086299999999, 4.426812000000041], [111.92855200000008, 4.42681499999992], [111.92855099999997, 4.425881000000118], [111.9295100000001, 4.4258800000000065], [111.92962300000005, 4.425793999999996], [111.93052399999999, 4.425793000000112], [111.93063600000005, 4.425707999999986], [111.93074899999993, 4.425707999999986], [111.93080400000008, 4.425666000000092], [111.93069100000014, 4.425582000000077], [111.93074899999993, 4.425539000000072], [111.93102900000002, 4.4255379999999604], [111.93102800000014, 4.424564000000032], [111.93114100000008, 4.424479000000133], [111.93102800000014, 4.424394000000007], [111.93102800000014, 4.424225000000035], [111.93113999999997, 4.424140000000136], [111.93102700000003, 4.42405500000001], [111.93102700000003, 4.4238860000000955], [111.93113999999997, 4.4238010000001395], [111.93102700000003, 4.423716000000013], [111.93102700000003, 4.423502999999982], [111.93119700000005, 4.423502999999982], [111.93125200000003, 4.4234610000000885], [111.93119700000005, 4.423420000000078], [111.93102700000003, 4.423420000000078], [111.93102599999997, 4.4231640000000425], [111.93119700000005, 4.4231640000000425], [111.93125099999992, 4.423122000000092], [111.931196, 4.4230810000000815], [111.93108399999994, 4.4230810000000815], [111.93102599999997, 4.423038000000076], [111.93113900000009, 4.42295299999995], [111.93113900000009, 4.422868000000051], [111.93125099999992, 4.422783000000095], [111.931196, 4.4227410000000305], [111.93108300000006, 4.422742000000085], [111.93102599999997, 4.42269900000008], [111.93113799999998, 4.42261400000001], [111.93113799999998, 4.422529000000054], [111.93102500000003, 4.422443999999928], [111.93102500000003, 4.422275000000013], [111.93113799999998, 4.422190000000057], [111.93102500000003, 4.422104999999988], [111.93102500000003, 4.4219360000000165], [111.93113700000009, 4.421850000000006], [111.93102399999998, 4.421765999999991], [111.93102399999998, 4.4215110000000095], [111.931082, 4.421468000000004], [111.93119500000012, 4.421553000000131], [111.93124899999992, 4.4215110000000095], [111.93102399999998, 4.421342000000095], [111.93102399999998, 4.421214000000134], [111.931194, 4.421214000000134], [111.93124899999992, 4.42117200000007], [111.931194, 4.421130000000119], [111.93102399999998, 4.421131000000003], [111.93102399999998, 4.421003000000098], [111.93091100000004, 4.420917999999972], [111.93091100000004, 4.420833000000073], [111.93096799999995, 4.420791000000122], [111.93108100000006, 4.420874999999967], [111.931194, 4.420874000000083], [111.93124899999992, 4.420833000000073], [111.931194, 4.420791000000122], [111.9310230000001, 4.420791000000122], [111.9310230000001, 4.420664000000102], [111.9307980000001, 4.420494000000076], [111.93085500000001, 4.420451000000071], [111.93108100000006, 4.420451000000071], [111.93119300000012, 4.420535000000086], [111.93124800000004, 4.420493000000022], [111.93108000000001, 4.4203679999999395], [111.93085500000001, 4.4203679999999395], [111.93079700000004, 4.420324999999934], [111.93085500000001, 4.420281000000045], [111.93096799999995, 4.420281000000045], [111.9310230000001, 4.420240000000035], [111.93096799999995, 4.4201980000000844], [111.93079700000004, 4.4201980000000844], [111.93079700000004, 4.419985999999994], [111.93090999999998, 4.4199010000000385], [111.93079700000004, 4.419816000000139], [111.93079700000004, 4.419732000000067], [111.93090900000004, 4.419646000000057], [111.93079599999993, 4.419560999999987], [111.93079599999993, 4.419349000000011], [111.93096700000007, 4.419349000000011], [111.9310210000001, 4.419307000000117], [111.93096599999996, 4.419264999999996], [111.93079599999993, 4.419266000000107], [111.93079599999993, 4.418925000000115], [111.93096599999996, 4.418924000000004], [111.9310210000001, 4.418882999999994], [111.93096599999996, 4.4188410000001], [111.93051500000013, 4.418841999999984], [111.93040300000013, 4.418758000000139], [111.92983899999996, 4.41875900000008], [111.92972600000007, 4.418674000000124], [111.92916300000002, 4.418674000000124], [111.92905000000007, 4.418588999999997], [111.92848700000002, 4.418590000000108], [111.92837400000008, 4.418504999999982], [111.92769900000002, 4.418506000000093], [111.92758600000008, 4.418422000000078], [111.92691000000013, 4.418423000000132], [111.92679700000002, 4.4183380000000625], [111.92600899999996, 4.418339000000117], [111.92589600000008, 4.41825399999999], [111.92510700000014, 4.4182550000001015], [111.92499400000003, 4.418169999999975], [111.92420600000003, 4.418171000000086], [111.92409300000008, 4.418087000000071], [111.92330500000008, 4.418088000000125], [111.92319199999997, 4.418003000000056], [111.92240300000003, 4.41800400000011], [111.92229100000003, 4.4179189999999835], [111.92150199999992, 4.417920000000095], [111.92138899999998, 4.417836000000079], [111.92060099999998, 4.417837000000134], [111.92043000000007, 4.417709000000059], [111.92042899999996, 4.417116000000021], [111.92031700000013, 4.417031000000065], [111.92037400000004, 4.416987000000006], [111.92172599999998, 4.416986000000065], [111.92183899999992, 4.41690200000005], [111.92443000000009, 4.41689800000006], [111.92454199999992, 4.4168129999999906], [111.92747099999997, 4.416809000000001], [111.92758400000008, 4.416724000000102], [111.93118900000013, 4.416720000000112], [111.931243, 4.41667799999999], [111.93118800000002, 4.41663699999998], [111.930567, 4.41663699999998], [111.930567, 4.416466000000071], [111.93096300000008, 4.416466000000071], [111.931018, 4.41642400000012], [111.93090500000005, 4.416338999999994], [111.93096300000008, 4.4162959999999885], [111.93107500000013, 4.4162959999999885], [111.93113000000005, 4.4162540000000945], [111.93107500000013, 4.416211999999973], [111.93096300000008, 4.416213000000084], [111.93085000000013, 4.416297999999983], [111.93079199999994, 4.4162540000000945], [111.93079199999994, 4.416127000000074], [111.93096200000002, 4.416127000000074], [111.93101700000011, 4.416085000000123], [111.93096200000002, 4.416043000000059], [111.93085000000013, 4.416044000000113], [111.93079199999994, 4.416000000000054], [111.93085000000013, 4.4159570000000485], [111.93107500000013, 4.415956000000108], [111.93113000000005, 4.415915000000098], [111.93101700000011, 4.415831000000082], [111.93101700000011, 4.415661000000057], [111.93112899999994, 4.4155759999999304], [111.93101700000011, 4.415492000000086], [111.931016, 4.41532200000006], [111.93112899999994, 4.4152369999999905], [111.931016, 4.415152000000035], [111.931016, 4.414982000000009], [111.93112899999994, 4.414897999999994], [111.93107400000002, 4.414856999999984], [111.93090300000011, 4.414856999999984], [111.93090300000011, 4.414601000000118], [111.93107300000014, 4.414601000000118], [111.93112800000006, 4.414558999999997], [111.93107300000014, 4.414517000000103], [111.93096000000003, 4.414517000000103], [111.93084799999997, 4.414602000000002], [111.93079, 4.414558999999997], [111.93079, 4.414474000000098], [111.93090300000011, 4.414389000000142], [111.93084799999997, 4.414348000000132], [111.93062200000008, 4.414348000000132], [111.930565, 4.4143040000000155], [111.93062200000008, 4.414262000000122], [111.93107300000014, 4.41426100000001], [111.93112800000006, 4.41422], [111.93107300000014, 4.414178000000106], [111.93062200000008, 4.41417899999999], [111.93056400000012, 4.414135000000101], [111.93062200000008, 4.414092000000096], [111.93084700000009, 4.414092000000096], [111.930902, 4.414049999999975], [111.93084700000009, 4.414008000000081], [111.9236380000001, 4.414017000000115], [111.92352499999998, 4.414103000000125], [111.92341200000004, 4.414017999999999], [111.92330000000004, 4.414103000000125], [111.9231870000001, 4.414103000000125], [111.92307399999999, 4.414017999999999], [111.92296199999993, 4.414103000000125], [111.92037099999999, 4.414106000000004], [111.92031300000014, 4.414062999999999], [111.92037099999999, 4.414019999999994], [111.92070900000004, 4.41401900000011], [111.9208210000001, 4.413935000000038], [111.92239799999999, 4.4139330000001], [111.9225110000001, 4.413847999999973], [111.9244260000001, 4.413845000000094], [111.92453799999998, 4.4137600000001385], [111.92712899999992, 4.413757000000089], [111.92724200000004, 4.413672000000133], [111.93084700000009, 4.413667000000089], [111.930902, 4.413626999999963], [111.93078900000006, 4.413542000000064], [111.93084700000009, 4.413497999999947], [111.93095899999992, 4.413497999999947], [111.93101400000006, 4.413456000000053], [111.93095899999992, 4.413415000000043], [111.93078900000006, 4.413415000000043], [111.93078900000006, 4.413244000000077], [111.93095899999992, 4.413244000000077], [111.93101400000006, 4.4132020000000125], [111.93095899999992, 4.4131609999999455], [111.930788, 4.4131609999999455], [111.930788, 4.41290500000008], [111.93095800000003, 4.41290500000008], [111.93101300000012, 4.412863000000016], [111.93095800000003, 4.412821000000065], [111.93084599999997, 4.412822000000006], [111.930788, 4.41277800000006], [111.93090100000012, 4.41269299999999], [111.93090000000001, 4.4123539999999934], [111.93078700000007, 4.412269999999978], [111.93078700000007, 4.412185000000022], [111.93095699999992, 4.412056000000007], [111.93107000000003, 4.412056000000007], [111.93112500000001, 4.412014000000113], [111.93107000000003, 4.4119739999999865], [111.93084500000009, 4.4119739999999865], [111.93078700000007, 4.411930999999981], [111.93084500000009, 4.4118870000000925], [111.93095699999992, 4.4118870000000925], [111.93101200000007, 4.411845000000142], [111.93095699999992, 4.4118040000001315], [111.93084399999998, 4.4118040000001315], [111.93078700000007, 4.411761000000126], [111.93084399999998, 4.411717000000067], [111.93107000000003, 4.411717000000067], [111.93112500000001, 4.411676], [111.93107000000003, 4.41163499999999], [111.93084399999998, 4.41163499999999], [111.93078700000007, 4.411591000000101], [111.93084399999998, 4.411548000000096], [111.93095699999992, 4.411548000000096], [111.93101200000007, 4.411505999999974], [111.93089900000012, 4.411421000000075], [111.93095699999992, 4.4113790000001245], [111.93106899999998, 4.4113790000001245], [111.93112400000007, 4.41133700000006], [111.93101099999996, 4.411252000000104], [111.93101099999996, 4.4110820000000786], [111.93112400000007, 4.410998000000063], [111.93101099999996, 4.410912999999937], [111.93101099999996, 4.410743000000082], [111.93112300000001, 4.410658000000012], [111.93101099999996, 4.410573999999997], [111.93101000000007, 4.410403000000031], [111.93112300000001, 4.410319000000015], [111.93101000000007, 4.4102340000000595], [111.93101000000007, 4.41010799999998], [111.93084200000004, 4.41010799999998], [111.93078600000001, 4.410064999999975], [111.93084200000004, 4.41002200000014], [111.93106800000004, 4.41002200000014], [111.93112200000007, 4.409980000000019], [111.93106699999998, 4.409938000000125], [111.93084200000004, 4.4099390000000085], [111.93078400000002, 4.40989500000012], [111.93112200000007, 4.409641000000022], [111.93106699999998, 4.409599000000128], [111.93095400000004, 4.409599000000128], [111.93078400000002, 4.409470999999996], [111.9308410000001, 4.409429000000102], [111.93095400000004, 4.409427999999991], [111.93100899999996, 4.409386999999981], [111.93095400000004, 4.409345000000087], [111.93078400000002, 4.409345000000087], [111.93078300000013, 4.4091320000000565], [111.93089600000002, 4.409047999999984], [111.93078300000013, 4.408963000000085], [111.93078300000013, 4.40879300000006], [111.93089600000002, 4.408708000000104], [111.93078300000013, 4.4086240000000885], [111.93089500000013, 4.408538000000078], [111.93078400000002, 4.408454000000063], [111.93100800000008, 4.408284000000037], [111.93095299999999, 4.408243000000027], [111.93078200000002, 4.408243000000027], [111.93078200000002, 4.4079020000000355], [111.93095200000005, 4.4079020000000355], [111.93100699999997, 4.4078600000001416], [111.93095200000005, 4.40781800000002], [111.93078200000002, 4.407819000000131], [111.93078100000014, 4.40747800000014], [111.93095200000005, 4.40747800000014], [111.93100699999997, 4.4074370000001295], [111.93095200000005, 4.407395000000008], [111.93083899999993, 4.407395000000008], [111.93078100000014, 4.407352000000003], [111.93089400000008, 4.407267000000104], [111.93083899999993, 4.407224999999983], [111.93072599999999, 4.407224999999983], [111.93066800000003, 4.4071819999999775], [111.93072599999999, 4.407138999999972], [111.9310640000001, 4.407138999999972], [111.93111900000002, 4.407097000000078], [111.9310640000001, 4.407056000000011], [111.93050100000005, 4.407056000000011], [111.93044300000003, 4.407013000000006], [111.93049999999994, 4.406970000000001], [111.93083800000005, 4.406969000000117], [111.93089300000014, 4.406926999999996], [111.93083800000005, 4.406885999999986], [111.93049999999994, 4.406885999999986], [111.93044300000003, 4.406842999999981], [111.93049999999994, 4.406799999999976], [111.9310640000001, 4.406799999999976], [111.93111800000014, 4.406758000000082], [111.931063, 4.406716000000131], [111.93072500000011, 4.4067170000000715], [111.93066900000008, 4.406674000000066], [111.93072500000011, 4.406630000000121], [111.93083800000005, 4.406630000000121], [111.93089300000014, 4.406588000000056], [111.93083800000005, 4.406547000000046], [111.93072500000011, 4.406547000000046], [111.93066800000003, 4.4065030000001], [111.93072500000011, 4.406461000000036], [111.931063, 4.406460000000095], [111.93111800000014, 4.406419000000085], [111.93100500000003, 4.4063339999999585], [111.93100500000003, 4.406165000000044], [111.93111800000014, 4.406080000000088], [111.93100500000003, 4.4059950000000185], [111.93100500000003, 4.405826000000047], [111.93111700000003, 4.405740000000037], [111.93100400000009, 4.405655000000138], [111.93100400000009, 4.405485999999996], [111.93111700000003, 4.40540100000004], [111.93100400000009, 4.405316000000141], [111.93100400000009, 4.405190000000005], [111.93083600000006, 4.405190000000005], [111.93077800000003, 4.4051469999999995], [111.93083600000006, 4.405103999999994], [111.931061, 4.405103999999994], [111.93111599999997, 4.4050620000001], [111.931061, 4.405019999999979], [111.93083600000006, 4.405021000000033], [111.93077800000003, 4.404976999999974], [111.93083600000006, 4.404934000000139], [111.93100400000009, 4.404934000000139], [111.93100300000003, 4.404808000000003], [111.93111599999997, 4.404723000000104], [111.931061, 4.404680999999982], [111.93083600000006, 4.404680999999982], [111.93077800000003, 4.404637999999977], [111.93083499999995, 4.404594999999972], [111.93094800000006, 4.404594999999972], [111.93100300000003, 4.404553000000078], [111.93094800000006, 4.404512000000068], [111.93083499999995, 4.404512000000068], [111.93077800000003, 4.404469000000063], [111.93089000000009, 4.404384000000107], [111.93077699999998, 4.40429899999998], [111.93077699999998, 4.404130000000066], [111.93089000000009, 4.40404500000011], [111.93077699999998, 4.4039600000000405], [111.93089000000009, 4.403875000000085], [111.93088899999998, 4.403705000000059], [111.93077699999998, 4.403621000000044], [111.93077600000004, 4.403366000000062], [111.93088899999998, 4.403280999999993], [111.93077600000004, 4.403196999999977], [111.93077600000004, 4.403027000000122], [111.9308880000001, 4.402941999999996], [111.93077600000004, 4.402857999999981], [111.93077499999998, 4.402688000000126], [111.9308880000001, 4.40260400000011], [111.930833, 4.402561999999989], [111.93015700000001, 4.4025630000001], [111.93004400000007, 4.402477999999974], [111.92903000000001, 4.402479000000028], [111.92891800000001, 4.402394000000129], [111.92767899999996, 4.402396000000124], [111.92756600000001, 4.402310999999997], [111.92610100000013, 4.402312999999992], [111.92598900000013, 4.402228999999977], [111.92542499999996, 4.402230000000031], [111.92536800000005, 4.402185999999972], [111.92542499999996, 4.402143000000137], [111.92655199999996, 4.402140999999972], [111.92666400000002, 4.402056000000073], [111.92790300000001, 4.402055000000132], [111.92801600000013, 4.4019700000000626], [111.92925499999996, 4.401969000000122], [111.92936800000007, 4.401884000000052], [111.93071899999995, 4.401882000000057], [111.93083200000007, 4.401797000000101], [111.93116999999995, 4.401796000000047], [111.9312250000001, 4.401755000000037], [111.93116999999995, 4.401713000000086], [111.93071899999995, 4.40171399999997], [111.93066200000004, 4.401670000000081], [111.93071899999995, 4.40162799999996], [111.93105700000007, 4.401627000000076], [111.93111199999998, 4.401586000000066], [111.93105700000007, 4.401543999999944], [111.93094400000012, 4.401543999999944], [111.93088699999998, 4.401500999999939], [111.93094400000012, 4.401457999999934], [111.93116999999995, 4.40145700000005], [111.93122399999999, 4.40141600000004], [111.93116900000007, 4.401374000000089], [111.93083100000001, 4.401374000000089], [111.9307740000001, 4.401331000000084], [111.93083100000001, 4.40128900000002], [111.93094400000012, 4.401288000000079], [111.93099900000004, 4.401247000000069], [111.93094400000012, 4.4012050000000045], [111.93083100000001, 4.4012050000000045], [111.9307740000001, 4.401161999999999], [111.93083100000001, 4.401118000000054], [111.93116900000007, 4.401118000000054], [111.93122399999999, 4.401075999999989], [111.93116900000007, 4.401034999999922], [111.93094400000012, 4.401034999999922], [111.9308860000001, 4.400991999999917], [111.93099900000004, 4.400907000000018], [111.9308860000001, 4.400823000000003], [111.93094300000001, 4.400779000000057], [111.93105600000013, 4.400779000000057], [111.93111100000004, 4.400736999999992], [111.93105600000013, 4.400695999999982], [111.93094300000001, 4.400695999999982], [111.9308860000001, 4.400652999999977], [111.93099799999993, 4.400568000000021], [111.93088500000005, 4.400483000000122], [111.93094300000001, 4.400440000000117], [111.93105600000013, 4.400440000000117], [111.93111100000004, 4.400397999999996], [111.93105600000013, 4.400356999999985], [111.93088500000005, 4.400356999999985], [111.93088500000005, 4.40010100000012], [111.93105500000007, 4.40010100000012], [111.93110999999999, 4.400058999999999], [111.93105500000007, 4.400017000000105], [111.93088500000005, 4.400017999999989], [111.93088500000005, 4.3998900000000845], [111.9307720000001, 4.3998050000001285], [111.93082900000002, 4.399762000000123], [111.93105500000007, 4.399761000000069], [111.93110999999999, 4.399720000000059], [111.93105500000007, 4.399678000000108], [111.93082900000002, 4.399678000000108], [111.9307720000001, 4.399635999999987], [111.9308840000001, 4.399551000000088], [111.9308840000001, 4.399465999999961], [111.93099700000005, 4.399381000000062], [111.9308840000001, 4.399297000000047], [111.9308840000001, 4.399212000000091], [111.930996, 4.399126000000081], [111.9308840000001, 4.399042000000065], [111.93088300000005, 4.39887200000004], [111.930996, 4.398787000000084], [111.93088300000005, 4.398703000000069], [111.93088300000005, 4.398617999999999], [111.930996, 4.398533000000043], [111.93099500000005, 4.3984479999999735], [111.93088300000005, 4.398364000000129], [111.93088300000005, 4.398279000000002], [111.93099500000005, 4.398194000000046], [111.93088199999994, 4.398108999999977], [111.93088199999994, 4.397855000000106], [111.93094000000013, 4.39781099999999], [111.93105199999997, 4.397896000000117], [111.93110700000011, 4.397853999999995], [111.93099500000005, 4.39776999999998], [111.930994, 4.397600000000125], [111.93110700000011, 4.3975149999999985], [111.930994, 4.397430000000099], [111.930994, 4.397176000000059], [111.931106, 4.397092000000043], [111.930994, 4.397007000000087], [111.93099300000006, 4.396794000000057], [111.93116400000002, 4.396794000000057], [111.93121900000011, 4.3967530000000465], [111.93116400000002, 4.396711000000096], [111.93099300000006, 4.396711000000096], [111.93099300000006, 4.39654100000007], [111.93082500000003, 4.39654100000007], [111.93076800000011, 4.396498000000065], [111.93082500000003, 4.39645500000006], [111.93116300000008, 4.39645500000006], [111.93121800000006, 4.3964129999999955], [111.93116300000008, 4.3963719999999284], [111.93082500000003, 4.3963719999999284], [111.93076800000011, 4.396328999999923], [111.93082500000003, 4.396285000000034], [111.93104999999997, 4.396285000000034], [111.93110500000012, 4.3962430000001405], [111.93104999999997, 4.396202000000073], [111.93082500000003, 4.396202000000073], [111.930767, 4.396159000000068], [111.93082500000003, 4.396116000000063], [111.93127600000003, 4.396116000000063], [111.93133000000006, 4.396073999999999], [111.93127500000014, 4.396032000000048], [111.93093700000009, 4.3960329999999885], [111.93087999999995, 4.395989999999983], [111.93093700000009, 4.395946000000038], [111.93104999999997, 4.395946000000038], [111.93110500000012, 4.395903999999973], [111.93104999999997, 4.3958630000001335], [111.93071200000009, 4.3958630000001335], [111.93059899999997, 4.395778000000007], [111.93003599999992, 4.395779000000118], [111.92992300000003, 4.395695000000046], [111.92924700000003, 4.395695999999987], [111.92913499999997, 4.395611000000031], [111.92857100000003, 4.395612000000142], [111.92845900000003, 4.3955270000000155], [111.92778300000003, 4.395528000000127], [111.92766999999992, 4.395444000000111], [111.9272190000001, 4.395444000000111], [111.92710700000009, 4.395358999999985], [111.92654299999992, 4.395360000000039], [111.9264310000001, 4.39527500000014], [111.92575499999992, 4.395276000000024], [111.92564199999998, 4.395191000000125], [111.92507899999998, 4.395192000000009], [111.92496600000004, 4.395107999999993], [111.92440299999998, 4.395107999999993], [111.92429000000004, 4.395023999999978], [111.92372699999999, 4.395023999999978], [111.92361400000004, 4.394939000000022], [111.92316300000005, 4.394940000000133], [111.92310600000013, 4.394897000000128], [111.92316300000005, 4.394854000000123], [111.92383900000004, 4.394853000000012], [111.92395199999999, 4.394937000000084], [111.92631799999998, 4.394933999999978], [111.92642999999998, 4.395019000000104], [111.92778199999998, 4.395017000000109], [111.92789500000009, 4.3951020000000085], [111.92913400000009, 4.395101000000125], [111.92924700000003, 4.39518500000014], [111.93026100000009, 4.3951829999999745], [111.93037299999992, 4.395268000000101], [111.93076600000012, 4.395268000000101], [111.93076600000012, 4.39509900000013], [111.93093599999997, 4.39509900000013], [111.93099100000006, 4.395057000000065], [111.93093599999997, 4.3950150000001145], [111.93076600000012, 4.3950150000001145], [111.93076600000012, 4.3947599999999625], [111.93093599999997, 4.394759000000079], [111.93099100000006, 4.3947180000000685], [111.93093599999997, 4.394676000000118], [111.93076500000006, 4.394676000000118], [111.93076500000006, 4.394379000000072], [111.93082300000003, 4.394335000000012], [111.93093500000009, 4.394420000000082], [111.93099000000001, 4.394378000000017], [111.93076500000006, 4.394209000000046], [111.93076500000006, 4.394125000000031], [111.93087700000007, 4.394039000000021], [111.93076500000006, 4.393954000000065], [111.93087700000007, 4.393868999999995], [111.93087700000007, 4.39378499999998], [111.93076400000012, 4.393700000000024], [111.93087700000007, 4.393615000000125], [111.93076400000012, 4.393529999999998], [111.93076400000012, 4.393361000000027], [111.93087600000001, 4.393276000000128], [111.93076400000012, 4.393192000000113], [111.93076300000007, 4.393022000000087], [111.93087600000001, 4.392937000000131], [111.93076300000007, 4.392853000000116], [111.93076300000007, 4.3926830000000905], [111.93087600000001, 4.39259700000008], [111.93082100000004, 4.39255600000007], [111.93070799999992, 4.39255600000007], [111.93059499999998, 4.392472000000055], [111.92958099999993, 4.392473000000109], [111.9294690000001, 4.392387999999983], [111.9283420000001, 4.392389999999978], [111.92828500000002, 4.3923469999999725], [111.9283420000001, 4.392303000000084], [111.92946800000004, 4.392301999999972], [111.92958099999993, 4.392217000000073], [111.93070700000004, 4.392215999999962], [111.93081999999998, 4.392131000000063], [111.93115800000004, 4.392129999999952], [111.93121299999996, 4.392088999999942], [111.93115800000004, 4.392047000000048], [111.9309330000001, 4.392047000000048], [111.93087500000007, 4.392004000000043], [111.93093199999998, 4.3919610000000375], [111.93104499999993, 4.391959999999926], [111.93110000000007, 4.391919000000087], [111.93104499999993, 4.391877000000022], [111.93093199999998, 4.391877000000022], [111.93087500000007, 4.391835000000071], [111.93093199999998, 4.391791000000012], [111.93115800000004, 4.391791000000012], [111.93121200000007, 4.391749000000061], [111.93115699999998, 4.391708000000051], [111.93093199999998, 4.391708000000051], [111.93087400000002, 4.391665000000046], [111.93098700000013, 4.391579999999919], [111.93087400000002, 4.391496000000075], [111.93093199999998, 4.391452000000015], [111.93115699999998, 4.391452000000015], [111.93121200000007, 4.391410000000064], [111.93115699999998, 4.391369000000054], [111.93093199999998, 4.391369000000054], [111.93087400000002, 4.391326000000049], [111.93098700000013, 4.3912409999999795], [111.93087500000007, 4.391157000000135], [111.9309310000001, 4.3911130000000185], [111.93104400000004, 4.3911130000000185], [111.93109900000013, 4.3910710000001245], [111.93104400000004, 4.391030000000114], [111.9309310000001, 4.391030000000114], [111.93087400000002, 4.390985999999998], [111.93098600000002, 4.390901999999983], [111.93087300000008, 4.390817000000027], [111.9309310000001, 4.390774000000022], [111.93104400000004, 4.390774000000022], [111.93109900000013, 4.390732000000128], [111.93104400000004, 4.390690000000006], [111.93087300000008, 4.390691000000118], [111.93087300000008, 4.390435000000082], [111.93104299999993, 4.390434000000141], [111.93109800000008, 4.390393000000131], [111.93104299999993, 4.3903510000000665], [111.93087300000008, 4.3903510000000665], [111.93087300000008, 4.390223999999989], [111.93098500000013, 4.39013900000009], [111.93098500000013, 4.39001200000007], [111.9308170000001, 4.39001200000007], [111.93075999999996, 4.389969000000065], [111.93087200000002, 4.389885000000049], [111.93075900000008, 4.389800000000093], [111.9308170000001, 4.389756000000034], [111.93092999999999, 4.389756000000034], [111.93098500000013, 4.389715000000024], [111.93092999999999, 4.389673000000073], [111.93075900000008, 4.389673000000073], [111.93075900000008, 4.389546000000053], [111.93087200000002, 4.389460000000042], [111.93087100000008, 4.389291000000071], [111.93075900000008, 4.3892060000000015], [111.93075799999997, 4.389035999999976], [111.93087100000008, 4.388952000000131], [111.93075799999997, 4.388867000000005], [111.93075799999997, 4.388613000000134], [111.93087100000008, 4.388528000000008], [111.93075799999997, 4.388443000000109], [111.93075799999997, 4.388274000000138], [111.93087000000003, 4.388189000000011], [111.93053200000014, 4.387935000000141], [111.93053200000014, 4.3878060000001256], [111.930702, 4.3878060000001256], [111.93075700000009, 4.387765000000115], [111.930702, 4.387723000000051], [111.92968800000011, 4.387724000000105], [111.92963000000009, 4.387681999999984], [111.92968800000011, 4.387638000000095], [111.93104000000005, 4.387637000000041], [111.93109499999997, 4.38759500000009], [111.93104000000005, 4.3875529999999685], [111.930814, 4.38755400000008], [111.93075700000009, 4.387509999999963], [111.930814, 4.387466999999958], [111.93092700000011, 4.387466999999958], [111.93098200000003, 4.387425000000064], [111.93092700000011, 4.387384000000054], [111.930814, 4.387384000000054], [111.93075600000003, 4.387341000000049], [111.930814, 4.387298000000044], [111.931039, 4.387296999999933], [111.93109400000009, 4.387256000000093], [111.931039, 4.387214000000029], [111.930814, 4.387215000000083], [111.93075600000003, 4.3871710000000235], [111.930814, 4.387128000000018], [111.93092600000006, 4.387128000000018], [111.93098099999997, 4.3870860000000675], [111.93092600000006, 4.387044000000003], [111.930814, 4.387044000000003], [111.93075600000003, 4.387002000000052], [111.930814, 4.386959000000047], [111.931039, 4.386957999999993], [111.93109400000009, 4.386916999999926], [111.931039, 4.386875000000032], [111.93092600000006, 4.386875000000032], [111.93086800000003, 4.386832000000027], [111.93098099999997, 4.386747000000071], [111.93086800000003, 4.3866630000000555], [111.93092600000006, 4.386618999999996], [111.93103800000006, 4.386618999999996], [111.93109299999998, 4.386577000000045], [111.93103800000006, 4.386536000000035], [111.93086800000003, 4.386536000000035], [111.93086800000003, 4.3861950000001], [111.93103800000006, 4.3861950000001], [111.93109299999998, 4.386152999999979], [111.93103800000006, 4.386112000000139], [111.93086800000003, 4.386112000000139], [111.93086699999998, 4.3858560000001034], [111.93103800000006, 4.3858560000001034], [111.93109200000009, 4.385813999999982], [111.931037, 4.385772000000088], [111.93086699999998, 4.385772999999972], [111.93086699999998, 4.385645000000068], [111.93075400000004, 4.385560000000112], [111.930812, 4.385517000000107], [111.931037, 4.385516000000052], [111.93109200000009, 4.385474999999985], [111.931037, 4.385433000000091], [111.930812, 4.385433000000091], [111.93075400000004, 4.38539099999997], [111.93086699999998, 4.385306000000071], [111.93081100000012, 4.38526400000012], [111.93058599999995, 4.385265000000061], [111.93052799999998, 4.385221000000115], [111.93058599999995, 4.38517800000011], [111.931037, 4.385177000000056], [111.93109200000009, 4.385136000000045], [111.931037, 4.385094000000095], [111.93058599999995, 4.385095000000035], [111.93052799999998, 4.38505200000003], [111.93058599999995, 4.385009000000025], [111.93081100000012, 4.385008000000084], [111.93086600000004, 4.384967000000074], [111.93081100000012, 4.384924999999953], [111.92630499999996, 4.384931000000108], [111.92624699999999, 4.384887000000049], [111.92630499999996, 4.384844000000044], [111.930698, 4.384838000000059], [111.93075299999992, 4.384797000000049], [111.93063999999998, 4.384713000000033], [111.930698, 4.384668999999917], [111.93092299999995, 4.384668999999917], [111.9309780000001, 4.384627000000023], [111.93092299999995, 4.384586000000013], [111.93063999999998, 4.384586000000013], [111.93063999999998, 4.384415000000047], [111.93092299999995, 4.384415000000047], [111.9309780000001, 4.384372999999982], [111.93092299999995, 4.384331999999915], [111.930698, 4.384331999999915], [111.9306410000001, 4.3842890000001375], [111.93075299999992, 4.384203000000127], [111.9306410000001, 4.384118000000001], [111.93069700000012, 4.38407600000005], [111.93092299999995, 4.38407600000005], [111.9309780000001, 4.3840339999999856], [111.93092299999995, 4.383992000000035], [111.93069700000012, 4.383992999999975], [111.93063999999998, 4.38394900000003], [111.93069700000012, 4.3839060000000245], [111.93092200000007, 4.3839060000000245], [111.93097699999998, 4.3838640000001305], [111.93092200000007, 4.383822000000009], [111.93081000000001, 4.383822000000009], [111.93075200000004, 4.383780000000115], [111.93086499999998, 4.383694999999989], [111.93086400000004, 4.383355999999992], [111.9306390000001, 4.383186000000137], [111.93069600000001, 4.383143000000132], [111.93092200000007, 4.383143000000132], [111.9309760000001, 4.383101000000067], [111.93092099999996, 4.383060000000057], [111.93069600000001, 4.383060000000057], [111.93063799999999, 4.383017000000052], [111.93069600000001, 4.382973000000106], [111.93092099999996, 4.382973000000106], [111.9309760000001, 4.382931000000042], [111.93092099999996, 4.382889999999975], [111.93080900000012, 4.382889999999975], [111.9306390000001, 4.3827629999999544], [111.93069600000001, 4.3827190000000655], [111.93092099999996, 4.3827190000000655], [111.9309760000001, 4.382676999999944], [111.93092099999996, 4.382636000000105], [111.93080800000007, 4.382636000000105], [111.9306390000001, 4.382507000000089], [111.93069500000013, 4.382465000000025], [111.93114600000013, 4.382464000000084], [111.93120100000004, 4.382423000000074], [111.93114600000013, 4.382381000000009], [111.93069500000013, 4.382382000000064], [111.93063799999999, 4.382338000000004], [111.93069500000013, 4.382294999999999], [111.93092000000007, 4.382294999999999], [111.93119999999999, 4.382083000000023], [111.93114500000001, 4.382042000000013], [111.93075000000005, 4.382042000000013], [111.93075000000005, 4.3818710000000465], [111.93092000000007, 4.381869999999992], [111.93103200000013, 4.381785999999977], [111.93114500000001, 4.381785999999977], [111.93119999999999, 4.381744000000026], [111.93114500000001, 4.381703000000016], [111.93086200000005, 4.381703000000016], [111.93086200000005, 4.381575000000112], [111.9309740000001, 4.381489999999985], [111.9309740000001, 4.381405000000029], [111.93108700000005, 4.38132000000013], [111.93103200000013, 4.38127900000012], [111.93091900000002, 4.381364000000019], [111.93086200000005, 4.38132000000013], [111.930861, 4.381235000000004], [111.9309740000001, 4.3811509999999885], [111.930861, 4.381066000000089], [111.93091900000002, 4.381023000000084], [111.93103200000013, 4.381023000000084], [111.93108599999994, 4.3809810000001335], [111.93103100000002, 4.380939000000069], [111.930861, 4.380940000000123], [111.930861, 4.3806840000000875], [111.93103100000002, 4.380682999999976], [111.93108599999994, 4.380641999999966], [111.93103100000002, 4.380600000000072], [111.930861, 4.380600000000072], [111.930861, 4.380473000000052], [111.93074800000005, 4.380388000000096], [111.93080499999996, 4.380344000000036], [111.93103100000002, 4.380344000000036], [111.93108599999994, 4.380302000000086], [111.93103100000002, 4.3802610000000755], [111.93080499999996, 4.3802610000000755], [111.93074800000005, 4.380218999999954], [111.93086000000011, 4.380134000000055], [111.93080499999996, 4.380091999999934], [111.93058000000002, 4.380091999999934], [111.930522, 4.380048999999929], [111.93058000000002, 4.3800059999999235], [111.93091800000008, 4.38000500000004], [111.930973, 4.379962999999918], [111.93091800000008, 4.379922000000079], [111.93058000000002, 4.379922000000079], [111.930522, 4.379880000000014], [111.93057900000008, 4.3798360000000685], [111.93080499999996, 4.3798360000000685], [111.93086000000011, 4.379794000000004], [111.93080499999996, 4.379752999999994], [111.92821400000003, 4.379756000000043], [111.92810100000008, 4.379670999999917], [111.92776299999997, 4.379672000000028], [111.92765000000003, 4.379587000000072], [111.92742500000008, 4.379587000000072], [111.92731199999997, 4.3795030000000565], [111.92697400000009, 4.3795030000000565], [111.92686200000003, 4.379419000000041], [111.92652399999997, 4.379419000000041], [111.92641100000003, 4.379333999999915], [111.92607299999997, 4.379335000000026], [111.92596000000003, 4.37925000000007], [111.92551000000009, 4.37925000000007], [111.92539699999998, 4.379166000000055], [111.92517200000003, 4.379166000000055], [111.92505900000009, 4.379082000000039], [111.92460800000009, 4.379082000000039], [111.92449600000003, 4.37899700000014], [111.92404500000004, 4.378998000000024], [111.9239320000001, 4.378914000000009], [111.92348199999998, 4.378914000000009], [111.92336900000004, 4.378829999999994], [111.92291800000004, 4.378829999999994], [111.92280599999998, 4.378745000000038], [111.92235499999998, 4.378745999999978], [111.92224200000004, 4.378661000000022], [111.92167900000004, 4.3786620000001335], [111.9215660000001, 4.378578000000118], [111.92100300000004, 4.378578000000118], [111.9208900000001, 4.378492999999992], [111.92032700000004, 4.378494000000046], [111.92026900000008, 4.378451000000041], [111.92032700000004, 4.3784069999999815], [111.92134099999993, 4.378406000000098], [111.92145299999999, 4.378321000000142], [111.92257999999998, 4.378318999999976], [111.92269199999998, 4.3782350000001315], [111.92415700000004, 4.378233000000137], [111.9242690000001, 4.378148000000067], [111.92573399999998, 4.378146000000072], [111.92584599999998, 4.378061000000116], [111.92731100000009, 4.378059000000121], [111.92742300000009, 4.377975000000106], [111.92888799999997, 4.377973000000111], [111.92900000000003, 4.377888000000041], [111.93046400000003, 4.377886000000046], [111.93057700000014, 4.37780100000009], [111.93113999999997, 4.377800000000036], [111.93119500000012, 4.377759000000026], [111.93113999999997, 4.377717000000075], [111.93057700000014, 4.377718000000016], [111.93051900000012, 4.377675000000011], [111.93057700000014, 4.3776320000000055], [111.93091500000003, 4.3776320000000055], [111.93097000000012, 4.377590000000055], [111.93091500000003, 4.377547999999933], [111.93057700000014, 4.3775490000000445], [111.93051900000012, 4.377504999999928], [111.93057700000014, 4.377461999999923], [111.93113999999997, 4.377461000000039], [111.93119500000012, 4.377420000000029], [111.93113999999997, 4.377378000000078], [111.93080200000009, 4.377378000000078], [111.93074400000006, 4.377335000000073], [111.93080200000009, 4.377292000000068], [111.93091399999992, 4.377292000000068], [111.93096900000006, 4.377251000000058], [111.93091399999992, 4.3772089999999935], [111.93080200000009, 4.3772089999999935], [111.93074400000006, 4.377165999999988], [111.93080099999997, 4.377122000000043], [111.93102700000003, 4.377122000000043], [111.931082, 4.377079999999978], [111.93102700000003, 4.3770390000001385], [111.93091399999992, 4.3770390000001385], [111.93085600000012, 4.376996000000133], [111.93096900000006, 4.376911000000007], [111.93085600000012, 4.376826999999992], [111.93091399999992, 4.376783000000103], [111.93102599999997, 4.376783000000103], [111.93108100000006, 4.376740999999981], [111.93102599999997, 4.376700000000142], [111.93085600000012, 4.376700000000142], [111.93085500000001, 4.3763589999999795], [111.93102599999997, 4.3763589999999795], [111.93108100000006, 4.37631800000014], [111.93102599999997, 4.376276000000075], [111.93085500000001, 4.37627700000013], [111.93085500000001, 4.376021000000094], [111.93102500000003, 4.376019999999983], [111.93108000000001, 4.3759789999999725], [111.93102500000003, 4.375937000000079], [111.93085500000001, 4.375937000000079], [111.93085500000001, 4.3758090000001175], [111.93074200000007, 4.375724000000048], [111.93080000000009, 4.375681000000043], [111.93091199999992, 4.375681000000043], [111.93096700000007, 4.375640000000033], [111.93091199999992, 4.375598000000082], [111.93080000000009, 4.375598000000082], [111.93074200000007, 4.375555000000077], [111.93085400000012, 4.37546999999995], [111.93074200000007, 4.375385000000051], [111.93079900000004, 4.375342000000046], [111.93091199999992, 4.375342000000046], [111.93096700000007, 4.375299999999925], [111.93091199999992, 4.375259000000085], [111.93079900000004, 4.375259000000085], [111.93074100000001, 4.37521600000008], [111.93085400000012, 4.37513100000001], [111.93079900000004, 4.3750890000000595], [111.93062899999995, 4.3750890000000595], [111.93062800000007, 4.374792000000014], [111.9306860000001, 4.374748000000125], [111.93079900000004, 4.374833000000024], [111.93085400000012, 4.37479100000013], [111.9306860000001, 4.3746660000000475], [111.93057299999998, 4.3746660000000475], [111.93051500000013, 4.374623000000042], [111.93062800000007, 4.374537000000032], [111.93051600000007, 4.374453000000017], [111.93057299999998, 4.374409000000128], [111.9307980000001, 4.374409000000128], [111.93085300000001, 4.374368000000118], [111.9307980000001, 4.374325999999996], [111.93057299999998, 4.3743270000001075], [111.93046000000004, 4.374241999999981], [111.93012199999993, 4.374241999999981], [111.93000900000004, 4.374157000000025], [111.9295590000001, 4.374158000000136], [111.92944599999998, 4.37407300000001], [111.92899499999999, 4.374074000000121], [111.9288830000001, 4.373990000000106], [111.92831899999999, 4.373990000000106], [111.92820699999993, 4.373904999999979], [111.92764299999999, 4.37390600000009], [111.92753099999999, 4.3738210000001345], [111.92674200000005, 4.373822000000018], [111.92662899999993, 4.373737000000119], [111.92595400000005, 4.373738000000003], [111.92589600000008, 4.373696000000109], [111.92595299999999, 4.373651999999993], [111.9265170000001, 4.373651999999993], [111.92662899999993, 4.3735659999999825], [111.92820600000005, 4.373563999999988], [111.92831899999999, 4.3734790000000885], [111.92978299999999, 4.3734770000000935], [111.9298960000001, 4.373393000000078], [111.9311350000001, 4.373391999999967], [111.93119000000002, 4.373350000000073], [111.9311350000001, 4.373307999999952], [111.93057099999999, 4.373309000000063], [111.93051400000007, 4.373266000000058], [111.93057099999999, 4.3732219999999415], [111.93090900000004, 4.3732219999999415], [111.93096399999996, 4.373180000000048], [111.93090900000004, 4.373139000000037], [111.93057099999999, 4.373139000000037], [111.93051299999996, 4.373096000000032], [111.93057099999999, 4.373053000000027], [111.93113400000004, 4.3730520000000865], [111.93118900000013, 4.373011000000076], [111.93113400000004, 4.372969000000012], [111.93079599999993, 4.372970000000066], [111.93073900000002, 4.372926000000007], [111.9310210000001, 4.372712999999919], [111.93113400000004, 4.372712999999919], [111.93118900000013, 4.37267200000008], [111.93113400000004, 4.372630000000015], [111.93085100000008, 4.372630000000015], [111.93085100000008, 4.372502000000054], [111.93090900000004, 4.372457999999995], [111.93096300000008, 4.372457999999995], [111.93096300000008, 4.372418000000039], [111.93096300000008, 4.37233300000014], [111.93107600000002, 4.3722470000001294], [111.9310210000001, 4.372206000000119], [111.93090799999999, 4.372291000000018], [111.93085000000013, 4.372248000000013], [111.93085000000013, 4.371950000000027], [111.93101999999999, 4.371950000000027], [111.93107500000013, 4.371908000000133], [111.93101999999999, 4.3718670000001225], [111.93085000000013, 4.3718670000001225], [111.93085000000013, 4.371695999999986], [111.93101999999999, 4.371695999999986], [111.93107500000013, 4.371654000000092], [111.93101999999999, 4.371613000000082], [111.93085000000013, 4.371613000000082], [111.93084900000008, 4.371399999999994], [111.93096200000002, 4.371315000000095], [111.93084900000008, 4.371229999999969], [111.93084900000008, 4.370976000000098], [111.93096100000008, 4.370891000000029], [111.930906, 4.370849000000078], [111.93079399999993, 4.370934000000034], [111.93073600000014, 4.370891000000029], [111.93073600000014, 4.3707220000000575], [111.93062300000003, 4.370636999999931], [111.93062300000003, 4.370468000000017], [111.93073500000003, 4.370383000000061], [111.93062300000003, 4.370297999999991], [111.93062200000008, 4.369365000000016], [111.93045400000005, 4.369239000000107], [111.93034099999994, 4.369239000000107], [111.930228, 4.369155000000092], [111.93000300000006, 4.369155000000092], [111.92989000000011, 4.369070000000136], [111.92972000000009, 4.369071000000076], [111.92971899999998, 4.368051000000037], [111.93022700000012, 4.368049999999926], [111.93034000000006, 4.3679650000000265], [111.93079, 4.3679650000000265], [111.93090300000011, 4.367880000000071], [111.931241, 4.367880000000071], [111.93129600000009, 4.367838000000006], [111.93124000000006, 4.367796999999996], [111.93090300000011, 4.367796999999996], [111.93084500000009, 4.367753999999991], [111.930902, 4.367710000000045], [111.93101500000012, 4.367710000000045], [111.93107000000003, 4.367669000000035], [111.93095699999992, 4.367584000000136], [111.93101500000012, 4.367541000000131], [111.93124000000006, 4.367541000000131], [111.93129500000003, 4.367499000000009], [111.93124000000006, 4.367457999999999], [111.93079, 4.367457999999999], [111.93073199999998, 4.367414999999994], [111.93078900000006, 4.367371000000105], [111.93101500000012, 4.367371000000105], [111.93107000000003, 4.367328999999984], [111.93101500000012, 4.367287999999974], [111.930902, 4.367287999999974], [111.93084500000009, 4.367246000000023], [111.930902, 4.367202000000134], [111.93112699999995, 4.367202000000134], [111.93118200000009, 4.367160000000013], [111.93112699999995, 4.367119000000002], [111.93095699999992, 4.367119000000002], [111.93095600000004, 4.366863000000137], [111.93112699999995, 4.366863000000137], [111.93118200000009, 4.366821000000073], [111.93112699999995, 4.366779000000122], [111.93095600000004, 4.366780000000006], [111.93095600000004, 4.366566999999975], [111.93106899999998, 4.366482000000076], [111.93095600000004, 4.36639700000012], [111.93095600000004, 4.366228000000035], [111.93106800000004, 4.366143000000079], [111.93101300000012, 4.366100999999958], [111.9308430000001, 4.366100999999958], [111.9308430000001, 4.365889000000038], [111.93095499999993, 4.365804000000082], [111.93090000000001, 4.365762000000018], [111.93072999999998, 4.365762000000018], [111.9307290000001, 4.365505999999982], [111.93090000000001, 4.365505999999982], [111.93095499999993, 4.365464000000031], [111.93090000000001, 4.365423000000021], [111.9307290000001, 4.365423000000021], [111.9307290000001, 4.36525400000005], [111.93056100000001, 4.36525400000005], [111.93050399999993, 4.365211000000045], [111.93056100000001, 4.365166999999985], [111.93089900000012, 4.365166999999985], [111.93095400000004, 4.365125000000035], [111.93089900000012, 4.365084000000024], [111.93067399999995, 4.365084000000024], [111.93056100000001, 4.364999000000125], [111.93039099999999, 4.364999000000125], [111.9303900000001, 4.363981000000081], [111.93101099999996, 4.3639799999999696], [111.93106499999999, 4.363938000000076], [111.93101000000007, 4.363897000000065], [111.93044700000002, 4.363897000000065], [111.93038899999999, 4.36385400000006], [111.93044700000002, 4.363811000000055], [111.93078500000007, 4.363809999999944], [111.93084000000005, 4.36376800000005], [111.93078500000007, 4.36372700000004], [111.93044700000002, 4.36372700000004], [111.93038899999999, 4.363684000000035], [111.93044700000002, 4.36364100000003], [111.93101000000007, 4.36364100000003], [111.93106499999999, 4.363599000000079], [111.93101000000007, 4.363557000000014], [111.93067199999996, 4.363558000000069], [111.93061500000005, 4.3635150000000635], [111.93067199999996, 4.363471000000004], [111.93078500000007, 4.363471000000004], [111.93084000000005, 4.363429000000053], [111.93078400000002, 4.363388000000043], [111.93067199999996, 4.363388000000043], [111.93061399999999, 4.363345000000038], [111.93067199999996, 4.363302000000033], [111.93101000000007, 4.363300999999922], [111.93106499999999, 4.363260000000082], [111.93101000000007, 4.363218000000018], [111.93083899999993, 4.363218000000018], [111.93083899999993, 4.363047000000051], [111.93100899999996, 4.363047000000051], [111.9310640000001, 4.363006000000041], [111.93100899999996, 4.362963999999977], [111.93083899999993, 4.362963999999977], [111.93083899999993, 4.362622999999985], [111.93100899999996, 4.362622999999985], [111.9310640000001, 4.362581000000034], [111.93100899999996, 4.362540000000024], [111.93083800000005, 4.362540000000024], [111.93083800000005, 4.362283999999988], [111.93100800000008, 4.362283999999988], [111.931063, 4.362242000000094], [111.93100800000008, 4.362201000000084], [111.93083800000005, 4.362201000000084], [111.93083800000005, 4.362032000000113], [111.93067000000002, 4.362032000000113], [111.930612, 4.361989000000108], [111.93067000000002, 4.3619449999999915], [111.93100800000008, 4.3619449999999915], [111.931063, 4.361903000000098], [111.93100800000008, 4.361860999999976], [111.93067000000002, 4.361862000000087], [111.93061300000005, 4.361817999999971], [111.93067000000002, 4.361774999999966], [111.93078200000002, 4.361774999999966], [111.93083699999994, 4.361733000000072], [111.93078200000002, 4.361693000000116], [111.93055700000008, 4.361693000000116], [111.93049999999994, 4.361649000000057], [111.93055700000008, 4.361606000000052], [111.93100800000008, 4.361605000000111], [111.93106200000011, 4.361564000000101], [111.93100699999997, 4.361522000000036], [111.93055700000008, 4.361523000000091], [111.93049900000005, 4.361479000000031], [111.93055700000008, 4.361436000000026], [111.93078200000002, 4.361436000000026], [111.93083699999994, 4.361394999999959], [111.93078200000002, 4.361353000000065], [111.92177099999998, 4.361364000000094], [111.92171300000001, 4.361321000000089], [111.9217700000001, 4.361278000000084], [111.92278399999998, 4.361276000000089], [111.92289700000009, 4.3611909999999625], [111.92379800000003, 4.361190000000079], [111.92391000000003, 4.361106000000063], [111.92458600000003, 4.361104999999952], [111.92469899999998, 4.361020000000053], [111.92537499999992, 4.361018999999942], [111.92548699999998, 4.360934000000043], [111.92593799999997, 4.360932999999932], [111.92605000000003, 4.360848000000033], [111.92650100000003, 4.360848000000033], [111.92661300000003, 4.360763000000077], [111.92706400000009, 4.360763000000077], [111.92717699999997, 4.360678000000007], [111.92751399999997, 4.3606770000000665], [111.92762699999992, 4.360591999999997], [111.92796500000003, 4.360591999999997], [111.92807800000014, 4.360505999999987], [111.92841499999992, 4.360505999999987], [111.92852800000003, 4.360422000000142], [111.92886600000014, 4.360421000000031], [111.92897799999997, 4.360336000000132], [111.92931600000003, 4.360336000000132], [111.92942899999997, 4.360251000000005], [111.92976700000008, 4.360250000000121], [111.92987900000008, 4.360164999999995], [111.93010500000014, 4.360164999999995], [111.93021699999997, 4.360080000000096], [111.93055500000008, 4.360080000000096], [111.93072300000011, 4.359953000000019], [111.93061, 4.3598680000001195], [111.93066700000008, 4.359825000000114], [111.93078000000003, 4.359825000000114], [111.93083499999995, 4.359784000000104], [111.93078000000003, 4.359741999999983], [111.93066700000008, 4.359741999999983], [111.93055500000008, 4.359827000000109], [111.93049700000006, 4.359784000000104], [111.93049700000006, 4.3594450000001075], [111.93077899999997, 4.359230999999966], [111.93100500000003, 4.359230999999966], [111.93106000000012, 4.359189000000072], [111.93100500000003, 4.3591480000000615], [111.93083400000006, 4.3591480000000615], [111.93083400000006, 4.35897900000009], [111.93066600000003, 4.35897900000009], [111.93060900000012, 4.358936000000085], [111.93066600000003, 4.358892000000026], [111.93100400000009, 4.358892000000026], [111.931059, 4.358850000000075], [111.93100400000009, 4.358809000000065], [111.93066600000003, 4.358809000000065], [111.930608, 4.358766999999943], [111.93066600000003, 4.3587230000000545], [111.93083400000006, 4.3587230000000545], [111.93083400000006, 4.358553000000029], [111.93100400000009, 4.358553000000029], [111.931059, 4.358511000000078], [111.93094600000012, 4.358427000000063], [111.93094600000012, 4.358257000000037], [111.93105800000012, 4.358172000000138], [111.93094600000012, 4.358088000000123], [111.93094500000001, 4.357918000000041], [111.93105800000012, 4.3578330000001415], [111.93094500000001, 4.357748000000015], [111.93094500000001, 4.3575779999999895], [111.93105700000007, 4.357493999999974], [111.93094500000001, 4.357409000000075], [111.93094500000001, 4.357238999999993], [111.93105700000007, 4.3571549999999775], [111.93094400000012, 4.357070000000078], [111.93094400000012, 4.356943000000058], [111.93066400000004, 4.356944000000112], [111.93060600000001, 4.356900000000053], [111.93066400000004, 4.356858000000102], [111.93100199999992, 4.356857000000048], [111.93105700000007, 4.3568160000000375], [111.93100199999992, 4.356774000000087], [111.93066400000004, 4.3567749999999705], [111.93060600000001, 4.356731000000082], [111.93066400000004, 4.3566880000000765], [111.93088899999998, 4.356687000000022], [111.93094400000012, 4.356645999999955], [111.93088899999998, 4.356604000000061], [111.9294240000001, 4.356606000000056], [111.9293120000001, 4.356522000000041], [111.92615800000004, 4.356525999999974], [111.92604499999993, 4.356441000000075], [111.92322899999999, 4.356445000000065], [111.92311600000005, 4.356360000000109], [111.92097600000011, 4.356362000000104], [111.920863, 4.356276999999977], [111.92029999999994, 4.3562780000000885], [111.92024199999997, 4.356235000000083], [111.92029999999994, 4.356192000000078], [111.92503100000005, 4.356186000000093], [111.9251430000001, 4.356101000000024], [111.92795900000004, 4.356097999999918], [111.92807199999999, 4.356013000000019], [111.9301000000001, 4.35601000000014], [111.93021199999993, 4.355925000000013], [111.93066299999992, 4.35592400000013], [111.93071800000007, 4.355884000000003], [111.93060500000013, 4.355799000000047], [111.93066200000004, 4.355754999999988], [111.9308880000001, 4.355754999999988], [111.93094300000001, 4.355713000000037], [111.9308880000001, 4.355672000000027], [111.93066200000004, 4.355672000000027], [111.93060500000013, 4.355629000000022], [111.93071699999996, 4.355544000000123], [111.93071699999996, 4.355415999999991], [111.93088699999998, 4.355415999999991], [111.93094200000013, 4.355374000000097], [111.93088699999998, 4.355331999999976], [111.93077499999998, 4.35533300000003], [111.93066200000004, 4.355417999999986], [111.93060400000002, 4.355374000000097], [111.93060400000002, 4.355289000000141], [111.93071699999996, 4.355205000000126], [111.93060400000002, 4.355119999999999], [111.93066200000004, 4.355076999999994], [111.93088699999998, 4.3550760000001105], [111.93094200000013, 4.3550350000001], [111.93088699999998, 4.354992999999979], [111.93066200000004, 4.35499400000009], [111.93060400000002, 4.354949999999974], [111.93066099999999, 4.35490800000008], [111.93088699999998, 4.354907000000139], [111.93094200000013, 4.354866000000129], [111.93088699999998, 4.354824000000065], [111.9307740000001, 4.354824000000065], [111.93071600000007, 4.3547810000000595], [111.9307740000001, 4.354737000000114], [111.93094100000002, 4.354737000000114], [111.93094100000002, 4.354440999999952], [111.93082900000002, 4.354357000000107], [111.93105300000008, 4.354187000000081], [111.93094100000002, 4.354102000000012], [111.93094000000013, 4.3539330000000405], [111.93105300000008, 4.3538480000000845], [111.93094000000013, 4.353763000000015], [111.93094000000013, 4.353594000000044], [111.93105300000008, 4.353508999999974], [111.93094000000013, 4.353424000000018], [111.93094000000013, 4.3532109999999875], [111.93110999999999, 4.3532109999999875], [111.93116500000008, 4.353169000000037], [111.93110999999999, 4.3531280000000265], [111.93093900000002, 4.3531280000000265], [111.93093900000002, 4.352958000000001], [111.93071600000007, 4.352958000000001], [111.93071600000007, 4.353085000000021], [111.93065899999999, 4.3531280000000265], [111.93060100000014, 4.353085000000021], [111.93060100000014, 4.352871999999991], [111.9311090000001, 4.352871999999991], [111.93116400000002, 4.352830000000097], [111.9311090000001, 4.352789000000087], [111.93065899999999, 4.352789000000087], [111.93060100000014, 4.3527460000000815], [111.93065899999999, 4.352702000000136], [111.93099700000005, 4.352702000000136], [111.93105199999997, 4.352660000000071], [111.93099700000005, 4.352620000000115], [111.93054600000005, 4.352620000000115], [111.93048800000003, 4.35257700000011], [111.93054600000005, 4.352532999999994], [111.9311090000001, 4.352532999999994], [111.93116400000002, 4.3524910000001], [111.9311090000001, 4.352448999999979], [111.93065800000005, 4.35245000000009], [111.93060100000014, 4.352407000000085], [111.93065800000005, 4.3523629999999685], [111.930996, 4.3523629999999685], [111.93105100000008, 4.352322000000129], [111.930996, 4.352280000000064], [111.93065800000005, 4.352281000000119], [111.93054499999994, 4.352196000000049], [111.92987000000005, 4.352197000000103], [111.92975699999994, 4.352111999999977], [111.929081, 4.352113000000088], [111.92896800000005, 4.352027999999962], [111.928405, 4.352027999999962], [111.92834899999997, 4.351987000000122], [111.92829200000006, 4.3519450000000575], [111.927729, 4.3519450000000575], [111.92761600000006, 4.3518600000001015], [111.92705300000006, 4.351861000000042], [111.92694000000012, 4.351776000000086], [111.92637700000006, 4.35177699999997], [111.92626400000012, 4.351692000000071], [111.92570100000006, 4.351692999999955], [111.92558799999995, 4.35160900000011], [111.925251, 4.35160900000011], [111.92513800000006, 4.35152400000004], [111.924687, 4.351525000000095], [111.92457400000012, 4.351440000000025], [111.92401100000006, 4.351441000000079], [111.923899, 4.351355999999953], [111.92344800000001, 4.351355999999953], [111.92333500000007, 4.351271999999938], [111.92277200000001, 4.351273000000049], [111.92265900000012, 4.351188000000093], [111.92220900000001, 4.3511890000000335], [111.92209600000007, 4.351104000000078], [111.92164500000007, 4.351104000000078], [111.92153300000001, 4.351020000000062], [111.92108200000001, 4.351020999999946], [111.92096900000007, 4.350936000000047], [111.92046099999993, 4.350936000000047], [111.92046099999993, 4.350765000000081], [111.92063100000001, 4.3507640000000265], [111.92074400000013, 4.350680000000011], [111.92142000000007, 4.350679000000071], [111.92153200000013, 4.350594000000001], [111.92209499999996, 4.35059300000006], [111.92220800000007, 4.350507999999991], [111.92288400000007, 4.35050700000005], [111.92299600000007, 4.3504219999999805], [111.92367200000007, 4.35042100000004], [111.92378500000001, 4.3503370000000245], [111.92434800000007, 4.3503370000000245], [111.92446000000007, 4.350251000000014], [111.92502400000001, 4.350251000000014], [111.92513600000007, 4.350166000000115], [111.92581200000001, 4.350165000000004], [111.92592499999995, 4.350080000000105], [111.92637500000006, 4.350078999999994], [111.926488, 4.3499949999999785], [111.92705100000006, 4.349994000000095], [111.92716300000006, 4.349909000000139], [111.92761400000012, 4.3499080000000845], [111.92772600000012, 4.349823000000129], [111.92817699999995, 4.349823000000129], [111.92829000000006, 4.349738000000059], [111.92874, 4.349738000000059], [111.92885300000012, 4.349653000000103], [111.92930300000006, 4.349652000000049], [111.929416, 4.349567000000093], [111.92986600000006, 4.3495660000000385], [111.929979, 4.3494810000000825], [111.93031700000012, 4.3494810000000825], [111.93042900000012, 4.349396000000013], [111.93070999999992, 4.349396000000013], [111.93070900000004, 4.349268999999936], [111.93082199999998, 4.349184000000037], [111.93070900000004, 4.349099000000081], [111.93070900000004, 4.348886999999991], [111.930992, 4.34888600000005], [111.93104700000009, 4.34884500000004], [111.930992, 4.348802999999975], [111.93082199999998, 4.348802999999975], [111.93082100000004, 4.348676000000125], [111.93070900000004, 4.348590999999999], [111.93076600000012, 4.348547999999994], [111.930992, 4.34854700000011], [111.93104600000004, 4.348506000000043], [111.93099100000006, 4.348463999999979], [111.93082100000004, 4.348463999999979], [111.93082100000004, 4.348337000000129], [111.93070799999992, 4.348252000000002], [111.93076600000012, 4.348208000000113], [111.93099100000006, 4.348208000000113], [111.93104600000004, 4.348165999999992], [111.93099100000006, 4.348124999999982], [111.93082100000004, 4.348124999999982], [111.93081999999998, 4.347869000000117], [111.93099100000006, 4.347869000000117], [111.93104600000004, 4.347826999999995], [111.93099100000006, 4.347785999999985], [111.93081999999998, 4.347785999999985], [111.93081999999998, 4.34753000000012], [111.93099000000001, 4.34753000000012], [111.93104499999993, 4.347488000000055], [111.93099000000001, 4.3474460000001045], [111.93081999999998, 4.347447000000045], [111.93081999999998, 4.3471909999999525], [111.93099000000001, 4.347190000000069], [111.93104499999993, 4.3471490000000585], [111.93099000000001, 4.347108000000048], [111.93081900000004, 4.347108000000048], [111.93081900000004, 4.346938000000023], [111.93065200000012, 4.346938000000023], [111.9305940000001, 4.346895000000018], [111.93065200000012, 4.346852000000013], [111.93098900000012, 4.346851000000072], [111.93104400000004, 4.346810000000062], [111.93098900000012, 4.346769000000052], [111.93076400000012, 4.346769000000052], [111.93070599999993, 4.3467260000000465], [111.93081900000004, 4.34664099999992], [111.93076400000012, 4.346599000000026], [111.93053900000001, 4.346599000000026], [111.93048099999999, 4.346556000000021], [111.93053800000007, 4.346513000000016], [111.93098900000012, 4.346512000000132], [111.93104400000004, 4.346471000000065], [111.93098900000012, 4.346430000000055], [111.93053800000007, 4.346430000000055], [111.93048099999999, 4.34638700000005], [111.93053800000007, 4.34634299999999], [111.93076400000012, 4.34634299999999], [111.93081799999999, 4.3463010000000395], [111.93076300000007, 4.346260000000029], [111.92242799999997, 4.346270000000004], [111.92231500000008, 4.346185000000048], [111.92023, 4.346187999999927], [111.92023, 4.345762999999977], [111.92051200000009, 4.345762000000036], [111.92062500000003, 4.345677000000137], [111.92186400000003, 4.345676000000026], [111.92197699999997, 4.345591000000127], [111.92310300000008, 4.345589000000132], [111.92321600000002, 4.3455050000001165], [111.92411700000014, 4.345504000000005], [111.92422900000014, 4.345419000000106], [111.92513000000008, 4.345417000000111], [111.92524300000002, 4.345331999999985], [111.92591900000002, 4.345331000000101], [111.92603100000002, 4.345245999999975], [111.92682000000013, 4.345245000000091], [111.92693199999997, 4.3451610000000755], [111.92749600000008, 4.345160000000135], [111.92760800000013, 4.345075000000065], [111.92817100000002, 4.345075000000065], [111.92828400000013, 4.344989000000055], [111.92873400000002, 4.344989000000055], [111.92884699999996, 4.344904000000099], [111.92929700000008, 4.344903000000045], [111.92941000000002, 4.3448190000000295], [111.92986100000002, 4.344818000000089], [111.92997300000007, 4.344733000000019], [111.93031100000013, 4.344733000000019], [111.93042400000007, 4.344648000000063], [111.93076100000008, 4.344647000000009], [111.930816, 4.344605000000058], [111.93070399999999, 4.344521000000043], [111.93076100000008, 4.344478000000038], [111.93087400000002, 4.344478000000038], [111.9309290000001, 4.3444359999999165], [111.93087400000002, 4.344395000000077], [111.93070300000005, 4.344395000000077], [111.93070300000005, 4.344054000000142], [111.93087300000008, 4.344054000000142], [111.93092800000005, 4.344012000000021], [111.93087300000008, 4.343970000000127], [111.93070300000005, 4.3439710000000105], [111.93070300000005, 4.34375799999998], [111.93081500000011, 4.343673000000024], [111.930702, 4.343588000000125], [111.930702, 4.3435040000001095], [111.93087300000008, 4.343375000000094], [111.93109800000008, 4.343375000000094], [111.931153, 4.343332999999973], [111.93109800000008, 4.343292000000133], [111.93075999999996, 4.343292000000133], [111.930702, 4.343249000000128], [111.93075999999996, 4.343206000000123], [111.93087200000002, 4.343206000000123], [111.93092700000011, 4.343164000000002], [111.93087200000002, 4.343122999999991], [111.93075999999996, 4.343122999999991], [111.930702, 4.343079999999986], [111.93075900000008, 4.343036000000097], [111.93109699999997, 4.343036000000097], [111.93115200000011, 4.342993999999976], [111.93109699999997, 4.342952000000082], [111.93075900000008, 4.342953000000136], [111.930702, 4.342910000000131], [111.93075900000008, 4.342867000000126], [111.93087200000002, 4.342867000000126], [111.93092700000011, 4.342825000000062], [111.93087200000002, 4.3427840000000515], [111.93075900000008, 4.3427840000000515], [111.93070100000006, 4.342740000000106], [111.93075900000008, 4.342697000000101], [111.93098400000002, 4.342697000000101], [111.931039, 4.342655000000036], [111.93098400000002, 4.342613000000085], [111.93087200000002, 4.342613999999969], [111.930814, 4.342570999999964], [111.93092600000006, 4.342486000000065], [111.930814, 4.3424009999999384], [111.93087100000008, 4.342357999999933], [111.93098400000002, 4.3423570000000495], [111.931039, 4.342316000000039], [111.93098400000002, 4.342274000000089], [111.930814, 4.342274000000089], [111.93081300000011, 4.342018000000053], [111.93098400000002, 4.342018000000053], [111.93103800000006, 4.341977000000043], [111.93098300000014, 4.341934999999921], [111.93081300000011, 4.341934999999921], [111.93081300000011, 4.341679000000056], [111.93098300000014, 4.341679000000056], [111.93103800000006, 4.3416369999999915], [111.93098300000014, 4.341597000000036], [111.93081300000011, 4.341597000000036], [111.930812, 4.34142700000001], [111.93064500000008, 4.34142700000001], [111.93058700000006, 4.341384000000005], [111.93064500000008, 4.341340000000116], [111.93087000000003, 4.341340000000116], [111.93092499999995, 4.341297999999995], [111.93087000000003, 4.341258000000039], [111.93064500000008, 4.341258000000039], [111.93058799999994, 4.341215000000034], [111.93064500000008, 4.341170999999974], [111.93075700000009, 4.341170999999974], [111.930812, 4.3411290000000236], [111.93075700000009, 4.341088000000013], [111.93041900000003, 4.341088000000013], [111.930361, 4.341045000000008], [111.93041900000003, 4.341001000000119], [111.93087000000003, 4.341001000000119], [111.93092499999995, 4.340960000000109], [111.93087000000003, 4.340917999999988], [111.93041900000003, 4.340919000000099], [111.930361, 4.340876000000094], [111.93041900000003, 4.340831999999978], [111.93064399999997, 4.340831999999978], [111.93069900000006, 4.340790000000084], [111.93064399999997, 4.3407490000000735], [111.92242099999993, 4.340758999999991], [111.92236400000002, 4.3407150000001025], [111.92242099999993, 4.340672999999981], [111.92298399999999, 4.340672000000097], [111.9230970000001, 4.340587000000141], [111.92354799999993, 4.340586000000087], [111.92365999999998, 4.340501000000131], [111.92422299999998, 4.340501000000131], [111.92433599999993, 4.340415000000121], [111.92478600000004, 4.340415000000121], [111.92489899999998, 4.340331000000106], [111.9253490000001, 4.3403299999999945], [111.92546200000004, 4.340245000000095], [111.92591300000004, 4.340243999999984], [111.9260250000001, 4.340159000000085], [111.92636299999998, 4.340159000000085], [111.9264760000001, 4.340073999999959], [111.92692600000004, 4.340073000000075], [111.92703899999992, 4.33998900000006], [111.92737700000004, 4.339987999999948], [111.92748900000004, 4.339903000000049], [111.92782699999998, 4.339903000000049], [111.92794000000009, 4.339818000000093], [111.92827700000004, 4.339817000000039], [111.92838999999998, 4.339732000000083], [111.92872800000009, 4.339732000000083], [111.9288400000001, 4.339647000000014], [111.92917799999998, 4.339647000000014], [111.92929099999992, 4.339562000000058], [111.92962900000003, 4.339561000000003], [111.92974100000004, 4.339476000000047], [111.92996700000009, 4.339476000000047], [111.93007899999992, 4.339390999999978], [111.93041700000003, 4.339390000000037], [111.93052999999998, 4.339306000000022], [111.93109299999998, 4.339305000000138], [111.93114800000012, 4.339264000000128], [111.93109299999998, 4.339222000000007], [111.93064199999998, 4.339223000000061], [111.93058400000001, 4.3391790000000015], [111.93064199999998, 4.339135999999996], [111.93086699999998, 4.339135999999996], [111.93092200000007, 4.3390940000000455], [111.93086699999998, 4.339051999999981], [111.93064199999998, 4.339053000000035], [111.93058400000001, 4.33901000000003], [111.93064199999998, 4.338967000000025], [111.93098000000009, 4.338966000000141], [111.93103500000001, 4.338925000000131], [111.93098000000009, 4.33888300000001], [111.93075400000004, 4.33888300000001], [111.93069700000012, 4.338840000000005], [111.93075400000004, 4.338796000000116], [111.93086699999998, 4.338796000000116], [111.93092200000007, 4.338755000000106], [111.93080900000012, 4.33867100000009], [111.93086699999998, 4.338626999999974], [111.93097899999998, 4.338626999999974], [111.93103400000007, 4.33858500000008], [111.93097899999998, 4.338544000000013], [111.93086699999998, 4.338544000000013], [111.93080900000012, 4.338501000000008], [111.93092099999996, 4.338414999999998], [111.93080900000012, 4.338330999999982], [111.93086600000004, 4.338287999999977], [111.93097899999998, 4.338287999999977], [111.93103400000007, 4.338246000000083], [111.93097899999998, 4.338205000000073], [111.93080900000012, 4.338205000000073], [111.93080800000007, 4.337949000000037], [111.93097899999998, 4.337949000000037], [111.93103300000001, 4.3379070000000866], [111.9309780000001, 4.337864999999965], [111.93080800000007, 4.337866000000076], [111.93080800000007, 4.337653000000046], [111.93092000000007, 4.33756800000009], [111.93080800000007, 4.33748300000002], [111.93080700000013, 4.337357000000054], [111.93063999999998, 4.337357000000054], [111.93058200000002, 4.337314000000049], [111.93063999999998, 4.337271000000044], [111.93086499999998, 4.3372699999999895], [111.93092000000007, 4.3372289999999225], [111.93086499999998, 4.3371870000000285], [111.93063999999998, 4.3371870000000285], [111.93058200000002, 4.337144000000023], [111.93069400000002, 4.337060000000008], [111.93058200000002, 4.336975000000052], [111.9306390000001, 4.336930999999993], [111.93086499999998, 4.336930999999993], [111.93092000000007, 4.336889000000042], [111.93086499999998, 4.336848000000032], [111.9306390000001, 4.336848000000032], [111.93058200000002, 4.336805000000027], [111.93080700000013, 4.336635000000001], [111.93080600000008, 4.336507000000097], [111.93097699999998, 4.336507000000097], [111.93103200000013, 4.336464999999976], [111.93097699999998, 4.336424000000136], [111.93080600000008, 4.336424000000136], [111.93080600000008, 4.336211000000105], [111.93091900000002, 4.336125999999979], [111.93080600000008, 4.336042000000134], [111.93080600000008, 4.3358720000001085], [111.93091800000008, 4.335786999999982], [111.93080499999996, 4.335702999999967], [111.93080400000008, 4.334684999999979], [111.93069100000014, 4.334600000000023], [111.93069100000014, 4.334473000000003], [111.9309740000001, 4.334472000000119], [111.93102900000002, 4.334431000000052], [111.9309740000001, 4.334388999999987], [111.93074899999993, 4.334388999999987], [111.93069100000014, 4.334345999999982], [111.93080400000008, 4.334261000000026], [111.93069100000014, 4.334176000000127], [111.93074899999993, 4.334133000000122], [111.9309740000001, 4.334133000000122], [111.93102900000002, 4.334092000000112], [111.9309740000001, 4.334049999999991], [111.93074800000005, 4.334049999999991], [111.93069100000014, 4.3340069999999855], [111.93080299999997, 4.333922000000086], [111.93074800000005, 4.333880000000136], [111.93063600000005, 4.333880000000136], [111.93057800000003, 4.3338370000001305], [111.93063600000005, 4.333794000000125], [111.930973, 4.333794000000125], [111.93102800000014, 4.333752000000004], [111.930973, 4.333710999999994], [111.93080299999997, 4.333710999999994], [111.93080299999997, 4.333455000000129], [111.930973, 4.333455000000129], [111.93102800000014, 4.333413000000064], [111.930973, 4.333372000000054], [111.93080299999997, 4.333372000000054], [111.93080200000009, 4.333115999999961], [111.930973, 4.333115999999961], [111.93102800000014, 4.333074000000067], [111.930973, 4.333031999999946], [111.93080200000009, 4.333033000000057], [111.93080200000009, 4.332862000000091], [111.93097200000011, 4.332861000000037], [111.93102700000003, 4.3328200000000265], [111.93097200000011, 4.332778000000076], [111.93080200000009, 4.332778000000076], [111.93080099999997, 4.332437000000141], [111.93097200000011, 4.332437000000141], [111.93102700000003, 4.3323950000000195], [111.93097200000011, 4.332354000000009], [111.93080099999997, 4.332354000000009], [111.93080099999997, 4.332185000000038], [111.93052100000011, 4.332185000000038], [111.93046300000009, 4.332142000000033], [111.93052100000011, 4.332097999999974], [111.93097100000006, 4.332097999999974], [111.93102599999997, 4.332056000000023], [111.93097100000006, 4.332015000000013], [111.93052100000011, 4.332015000000013], [111.93046300000009, 4.3319720000000075], [111.93052100000011, 4.331928000000119], [111.93074600000006, 4.331928000000119], [111.93080099999997, 4.331887000000108], [111.93074600000006, 4.331846000000041], [111.92759200000006, 4.331850000000031], [111.92747900000012, 4.331934000000047], [111.92736700000006, 4.331850000000031], [111.92725399999995, 4.331934000000047], [111.92714100000006, 4.331934000000047], [111.927029, 4.331850000000031], [111.92691600000006, 4.331934999999987], [111.92680400000006, 4.331934999999987], [111.92669100000012, 4.331850999999972], [111.926578, 4.331850999999972], [111.92646599999995, 4.331934999999987], [111.926353, 4.331850999999972], [111.92624000000012, 4.331934999999987], [111.92612800000006, 4.3319360000000415], [111.92601500000012, 4.331852000000026], [111.92590200000001, 4.331852000000026], [111.92579, 4.3319360000000415], [111.92567700000006, 4.331852000000026], [111.92556400000012, 4.331852000000026], [111.92545200000006, 4.3319360000000415], [111.92021300000005, 4.331943000000081], [111.92021300000005, 4.331772000000001], [111.92021199999994, 4.331601999999975], [111.92083300000002, 4.331601000000035], [111.92094600000013, 4.331517000000019], [111.92173400000013, 4.331516000000136], [111.92184700000007, 4.331431000000009], [111.92263500000007, 4.331430000000125], [111.92274800000001, 4.331344999999999], [111.92342399999995, 4.331344000000115], [111.92353600000001, 4.331258999999989], [111.92421200000001, 4.331258999999989], [111.92432500000012, 4.331172999999978], [111.92488799999995, 4.331172999999978], [111.92500000000001, 4.331088000000079], [111.92556300000001, 4.331087000000139], [111.92567599999995, 4.331002000000069], [111.92612700000001, 4.331001000000128], [111.92623900000001, 4.330917000000113], [111.92680200000007, 4.330916000000059], [111.92691500000001, 4.330831000000103], [111.92725300000006, 4.330831000000103], [111.92736500000012, 4.3307459999999764], [111.92781600000012, 4.330745000000093], [111.92792799999995, 4.330659999999966], [111.928154, 4.330659999999966], [111.92826600000006, 4.330575000000067], [111.92860400000012, 4.330575000000067], [111.92871700000006, 4.330489999999941], [111.92905500000012, 4.330489000000057], [111.929167, 4.33040399999993], [111.92950500000006, 4.33040399999993], [111.929618, 4.330319000000031], [111.929955, 4.33031799999992], [111.93006800000012, 4.330234000000075], [111.93029300000006, 4.330234000000075], [111.930406, 4.330148000000065], [111.93063099999995, 4.330148000000065], [111.93074400000006, 4.3300629999999956], [111.93096900000006, 4.3300629999999956], [111.93102399999998, 4.330021000000045], [111.93096900000006, 4.32997899999998], [111.9307980000001, 4.329980000000035], [111.9307980000001, 4.329811000000063], [111.93063099999995, 4.329811000000063], [111.93057299999998, 4.329767000000004], [111.93063099999995, 4.329723999999999], [111.93096799999995, 4.329723000000115], [111.9310230000001, 4.329682000000048], [111.93096799999995, 4.3296399999999835], [111.930743, 4.329641000000038], [111.93068499999998, 4.329598000000033], [111.9307980000001, 4.329513000000134], [111.9307980000001, 4.329384000000118], [111.93096799999995, 4.329384000000118], [111.9310230000001, 4.329343000000108], [111.93096799999995, 4.329300999999987], [111.9307980000001, 4.329300999999987], [111.93079700000004, 4.3290450000001215], [111.93096799999995, 4.3290450000001215], [111.9310230000001, 4.329003], [111.93096799999995, 4.32896199999999], [111.93079700000004, 4.32896199999999], [111.93079700000004, 4.328706000000125], [111.93096700000007, 4.328706000000125], [111.93102199999998, 4.32866400000006], [111.93096700000007, 4.328624000000104], [111.93079700000004, 4.328624000000104], [111.93079700000004, 4.328452000000084], [111.93096700000007, 4.328452000000084], [111.93102199999998, 4.328409999999963], [111.93096700000007, 4.328368000000069], [111.93079599999993, 4.328368999999952], [111.93079599999993, 4.3280280000000175], [111.93096599999996, 4.328027000000077], [111.9310210000001, 4.327987000000007], [111.93096599999996, 4.3279450000000566], [111.93079599999993, 4.3279450000000566], [111.93079599999993, 4.327816999999925], [111.93068299999999, 4.327732000000026], [111.93074100000001, 4.327689000000021], [111.93085300000001, 4.327689000000021], [111.93090799999999, 4.327648000000011], [111.93085300000001, 4.32760600000006], [111.93062800000007, 4.32760600000006], [111.93057000000005, 4.327563000000055], [111.93062800000007, 4.327518999999995], [111.93074000000013, 4.327518999999995], [111.93079500000005, 4.327477999999985], [111.93057000000005, 4.327309000000014], [111.9306820000001, 4.327224000000115], [111.9306820000001, 4.326713999999981], [111.93090700000005, 4.326545000000067], [111.93085200000013, 4.326503000000116], [111.93073900000002, 4.326589000000126], [111.9306820000001, 4.326545000000067], [111.93068099999999, 4.32620600000007], [111.93079399999993, 4.326121000000114], [111.93068099999999, 4.326037000000099], [111.93068099999999, 4.325867000000073], [111.93079300000005, 4.325781999999947], [111.93068099999999, 4.325697999999932], [111.93073800000013, 4.325654000000043], [111.93085100000008, 4.325654000000043], [111.93096300000008, 4.325568999999916], [111.93107600000002, 4.325568999999916], [111.93113099999994, 4.325527000000022], [111.93107600000002, 4.3254850000000715], [111.93096300000008, 4.325486000000012], [111.93085100000008, 4.325571000000082], [111.93079300000005, 4.325527000000022], [111.93079300000005, 4.325442000000066], [111.93090500000005, 4.325358000000051], [111.93079300000005, 4.3252729999999815], [111.93085000000013, 4.325229999999976], [111.93107600000002, 4.325229999999976], [111.93113099999994, 4.325188000000026], [111.93107600000002, 4.325146000000132], [111.93085000000013, 4.325147000000015], [111.93079300000005, 4.3251030000001265], [111.93090500000005, 4.325019000000054], [111.93085000000013, 4.32497699999999], [111.93073700000002, 4.324978000000044], [111.93068000000011, 4.324933999999985], [111.93073700000002, 4.32489099999998], [111.93107500000013, 4.324890000000039], [111.93113000000005, 4.324849000000029], [111.93107500000013, 4.324807000000135], [111.93090500000005, 4.324807000000135], [111.930904, 4.324551000000099], [111.93107500000013, 4.324551000000099], [111.93113000000005, 4.324508999999978], [111.93107500000013, 4.324468000000138], [111.930904, 4.324468000000138], [111.930904, 4.324255999999991], [111.93101700000011, 4.324169999999981], [111.930904, 4.324086000000136], [111.930904, 4.324001000000067], [111.931016, 4.323916000000111], [111.93096100000008, 4.3238750000001005], [111.93079100000006, 4.3238750000001005], [111.93079100000006, 4.32366200000007], [111.93090300000011, 4.323576999999943], [111.93079100000006, 4.323492000000044], [111.93079, 4.323408000000029], [111.93067800000011, 4.323323000000073], [111.93073500000003, 4.323280000000068], [111.93084799999997, 4.323280000000068], [111.93090300000011, 4.3232380000000035], [111.93084799999997, 4.323196000000053], [111.93067800000011, 4.3231969999999365], [111.93067700000006, 4.322771000000046], [111.93084700000009, 4.322771000000046], [111.930902, 4.3227300000000355], [111.93084700000009, 4.3226880000001415], [111.93067700000006, 4.3226880000001415], [111.93067700000006, 4.322391000000039], [111.93078900000006, 4.3223050000000285], [111.93067599999995, 4.322221000000013], [111.93067599999995, 4.322050999999988], [111.93078900000006, 4.321966000000089], [111.93067599999995, 4.321881000000133], [111.93067599999995, 4.321797000000117], [111.930788, 4.321711999999991], [111.930788, 4.321373000000051], [111.93090000000001, 4.321288000000095], [111.930788, 4.321203000000025], [111.93084500000009, 4.32116000000002], [111.93107099999997, 4.32116000000002], [111.93112600000006, 4.3211180000000695], [111.93107099999997, 4.321077000000059], [111.93090000000001, 4.321077000000059], [111.93090000000001, 4.320948000000044], [111.93078700000007, 4.320864000000029], [111.93084500000009, 4.320821000000024], [111.93107000000003, 4.320821000000024], [111.93112500000001, 4.320779000000073], [111.93107000000003, 4.320737000000008], [111.93090000000001, 4.320738000000063], [111.93090000000001, 4.320609000000047], [111.93078700000007, 4.320525000000032], [111.93084500000009, 4.320482000000027], [111.93095699999992, 4.320482000000027], [111.93101200000007, 4.320440000000133], [111.93089900000012, 4.320355000000006], [111.93089900000012, 4.320186000000035], [111.93101200000007, 4.320101000000136], [111.93089900000012, 4.32001600000001], [111.93089900000012, 4.3199310000001105], [111.93101099999996, 4.319847000000095], [111.93089900000012, 4.319762000000139], [111.93089800000001, 4.319592000000114], [111.93101099999996, 4.319506999999987], [111.93095600000004, 4.319465999999977], [111.93078600000001, 4.319465999999977], [111.93078500000007, 4.319253000000117], [111.93089800000001, 4.319168000000047], [111.93078500000007, 4.3190830000000915], [111.93078500000007, 4.318997999999965], [111.93089800000001, 4.318913000000066], [111.93089700000013, 4.318829000000051], [111.93078500000007, 4.318744000000095], [111.93078500000007, 4.31857500000001], [111.93089700000013, 4.318490000000054], [111.93078400000002, 4.318404999999927], [111.93078400000002, 4.318320000000028], [111.93089700000013, 4.318236000000013], [111.93078400000002, 4.318151000000057], [111.93078400000002, 4.3179380000000265], [111.93095400000004, 4.3179380000000265], [111.93100899999996, 4.3178960000001325], [111.93095400000004, 4.317855000000122], [111.9308410000001, 4.317855000000122], [111.93078400000002, 4.317812000000117], [111.93100899999996, 4.3176409999999805], [111.93095400000004, 4.317600000000141], [111.9308410000001, 4.317600000000141], [111.93072799999999, 4.317516000000126], [111.93061599999999, 4.317516000000126], [111.93055800000013, 4.3174730000001205], [111.93061599999999, 4.317429000000004], [111.93095299999999, 4.317429000000004], [111.93100800000008, 4.31738700000011], [111.93095299999999, 4.3173460000001], [111.93061500000005, 4.3173460000001], [111.93055800000013, 4.317303000000095], [111.93061500000005, 4.31726000000009], [111.93072799999999, 4.31726000000009], [111.93078300000013, 4.317218000000139], [111.93072799999999, 4.317177000000129], [111.93061500000005, 4.317177000000129], [111.93055800000013, 4.317133000000069], [111.93061500000005, 4.317090000000064], [111.93084000000005, 4.317090000000064], [111.93089500000013, 4.3170480000001135], [111.93078300000013, 4.316964000000098], [111.93078200000002, 4.3167510000000675], [111.93095299999999, 4.316749999999956], [111.93100800000008, 4.316709000000117], [111.93095299999999, 4.316667000000052], [111.93078200000002, 4.316667000000052], [111.93078200000002, 4.316411000000016], [111.93095200000005, 4.316411000000016], [111.93100699999997, 4.316369000000066], [111.93078200000002, 4.316201000000035], [111.93083899999993, 4.316156999999919], [111.93095200000005, 4.316156999999919], [111.93100699999997, 4.316115000000025], [111.93095200000005, 4.316074000000015], [111.93078100000014, 4.316074000000015], [111.93078100000014, 4.315946000000054], [111.93100600000008, 4.315776000000028], [111.93083899999993, 4.315650000000062], [111.93072599999999, 4.315650000000062], [111.93066800000003, 4.315607000000057], [111.93072599999999, 4.315564000000052], [111.93083899999993, 4.315564000000052], [111.93089300000014, 4.315521999999987], [111.93083800000005, 4.315480000000036], [111.93050100000005, 4.315480999999977], [111.93044400000014, 4.315437999999972], [111.93049999999994, 4.315394000000026], [111.930951, 4.315394000000026], [111.93100600000008, 4.315352000000132], [111.930951, 4.315311000000122], [111.93072599999999, 4.315311000000122], [111.93066800000003, 4.315268000000117], [111.93078000000003, 4.31518299999999], [111.93072500000011, 4.3151410000000965], [111.93061300000005, 4.31514199999998], [111.93055500000008, 4.315098000000091], [111.93066800000003, 4.315014000000019], [111.93055500000008, 4.31492900000012], [111.93055399999997, 4.3146310000001336], [111.93072500000011, 4.3146310000001336], [111.93078000000003, 4.314590000000123], [111.93072500000011, 4.314548000000059], [111.930612, 4.314548000000059], [111.93055399999997, 4.314505000000054], [111.93066700000008, 4.314420000000098], [111.93066700000008, 4.3143360000000825], [111.93077899999997, 4.314250000000072], [111.930724, 4.314209000000062], [111.930612, 4.314209000000062], [111.93055399999997, 4.314166000000057], [111.930612, 4.314121999999941], [111.93077899999997, 4.314121999999941], [111.93077899999997, 4.3139960000000315], [111.93089099999997, 4.3139110000000755], [111.93077899999997, 4.313826000000006], [111.93077899999997, 4.313657000000035], [111.93089099999997, 4.313572000000079], [111.93077800000003, 4.313487000000009], [111.93077800000003, 4.313189000000023], [111.93094800000006, 4.313189000000023], [111.93100300000003, 4.313147000000129], [111.93094800000006, 4.3131060000001185], [111.93077800000003, 4.3131060000001185], [111.93077699999998, 4.31238500000012], [111.93089000000009, 4.312299999999993], [111.93077699999998, 4.312215000000094], [111.93077600000004, 4.3119610000000534], [111.93088899999998, 4.3118760000000975], [111.93077600000004, 4.311791000000028], [111.93077600000004, 4.311622000000057], [111.93088899999998, 4.31153699999993], [111.93077600000004, 4.311452000000031], [111.93077600000004, 4.31119700000005], [111.9308880000001, 4.311113000000034], [111.93077499999998, 4.311028000000135], [111.9308880000001, 4.310943000000009], [111.93077499999998, 4.310858000000053], [111.9307740000001, 4.310265000000015], [111.93066200000004, 4.310180000000116], [111.93066200000004, 4.310096000000101], [111.93083200000007, 4.309967000000086], [111.93105700000007, 4.309967000000086], [111.93111199999998, 4.309925000000135], [111.93105700000007, 4.309884000000125], [111.93071899999995, 4.309884000000125], [111.93066099999999, 4.3098410000001195], [111.93071899999995, 4.309798000000114], [111.93083200000007, 4.309798000000114], [111.9308860000001, 4.30975600000005], [111.93083100000001, 4.309714999999983], [111.93071899999995, 4.309714999999983], [111.93066099999999, 4.309671999999978], [111.93071899999995, 4.309628000000089], [111.93094400000012, 4.309628000000089], [111.93099900000004, 4.3095859999999675], [111.93094400000012, 4.309544999999957], [111.93071899999995, 4.309544999999957], [111.93066200000004, 4.309501999999952], [111.93099799999993, 4.309247000000028], [111.93094300000001, 4.309205000000077], [111.93077299999999, 4.309206000000017], [111.93077299999999, 4.309078000000056], [111.93099799999993, 4.308908000000031], [111.93094300000001, 4.30886600000008], [111.93077299999999, 4.30886600000008], [111.9307720000001, 4.30865399999999], [111.93099799999993, 4.308484000000135], [111.93094300000001, 4.308443000000125], [111.93083000000007, 4.30852700000014], [111.9307720000001, 4.308485000000019], [111.9307720000001, 4.308271000000104], [111.93094200000013, 4.308271000000104], [111.93099700000005, 4.308228999999983], [111.93094200000013, 4.308187999999973], [111.9307720000001, 4.308187999999973], [111.9307720000001, 4.307975000000113], [111.9308840000001, 4.307889999999986], [111.930771, 4.3078060000001415], [111.930771, 4.307721000000072], [111.93065899999999, 4.307636000000116], [111.93071600000007, 4.307593000000111], [111.93082900000002, 4.307593000000111], [111.9308840000001, 4.307552000000101], [111.93082900000002, 4.307509999999979], [111.93071600000007, 4.3075110000000905], [111.93065800000005, 4.307466999999974], [111.930771, 4.307382000000075], [111.93065800000005, 4.307297000000119], [111.93065800000005, 4.306957999999952], [111.93077000000011, 4.306873999999937], [111.93065800000005, 4.3067890000000375], [111.930657, 4.306704000000082], [111.93054499999994, 4.306619000000012], [111.93060200000008, 4.306576000000007], [111.93071499999996, 4.306576000000007], [111.93077000000011, 4.306534000000056], [111.93071499999996, 4.306493000000046], [111.93060200000008, 4.306493000000046], [111.93048900000014, 4.306407999999919], [111.93015200000013, 4.306409000000031], [111.93003900000002, 4.306324000000075], [111.92958800000002, 4.306324000000075], [111.92947600000014, 4.306240000000059], [111.92902500000014, 4.306241], [111.92891200000003, 4.306156000000044], [111.92846200000008, 4.306156000000044], [111.92834899999997, 4.306072000000029], [111.92778600000014, 4.306072000000029], [111.92767300000003, 4.30598700000013], [111.92688499999997, 4.3059880000000135], [111.92677200000008, 4.305903999999998], [111.92598299999997, 4.3059050000000525], [111.92587099999992, 4.305819999999983], [111.92485700000009, 4.305821999999978], [111.92479900000006, 4.305778000000032], [111.92485700000009, 4.305735000000027], [111.92508200000003, 4.305735000000027], [111.92519499999997, 4.305649000000017], [111.92564500000009, 4.305649000000017], [111.92575800000003, 4.305565000000001], [111.92620799999992, 4.305564000000118], [111.92632100000003, 4.305478999999991], [111.92677099999997, 4.305478000000107], [111.92688400000009, 4.305392999999981], [111.92722199999997, 4.305392999999981], [111.92733400000003, 4.305308000000082], [111.92778500000003, 4.305308000000082], [111.92789700000009, 4.305223000000126], [111.92834800000008, 4.305222000000072], [111.92846100000003, 4.305137000000116], [111.92891100000014, 4.305137000000116], [111.92902400000003, 4.305051000000105], [111.92947399999997, 4.305051000000105], [111.92958700000008, 4.30496700000009], [111.93015000000014, 4.304965999999979], [111.93026199999997, 4.30488100000008], [111.93071300000003, 4.304879999999969], [111.93082500000003, 4.30479500000007], [111.93116300000008, 4.30479500000007], [111.93121800000006, 4.304752999999948], [111.93116300000008, 4.304711000000054], [111.93060000000008, 4.304712000000109], [111.93054200000006, 4.3046690000001036], [111.93060000000008, 4.304626000000098], [111.93093800000014, 4.304626000000098], [111.93099300000006, 4.304584000000034], [111.93093800000014, 4.304542000000083], [111.93082500000003, 4.304543000000024], [111.930767, 4.304499000000078], [111.93082500000003, 4.304456000000073], [111.93116300000008, 4.304455000000019], [111.93121800000006, 4.304414000000008], [111.93116300000008, 4.304372000000058], [111.93093800000014, 4.304372000000058], [111.93087999999995, 4.3043290000000525], [111.930992, 4.304245000000037], [111.93087999999995, 4.304160000000081], [111.93093700000009, 4.304116000000022], [111.93104999999997, 4.304116000000022], [111.93110500000012, 4.304075000000012], [111.93104999999997, 4.304033000000061], [111.93087900000006, 4.304033000000061], [111.93087900000006, 4.303777000000025], [111.93104900000009, 4.303777000000025], [111.931104, 4.303735000000131], [111.93104900000009, 4.303694000000121], [111.93087900000006, 4.303694000000121], [111.93087900000006, 4.303481000000033], [111.93099100000006, 4.303396000000134], [111.93087900000006, 4.303312000000119], [111.93087799999995, 4.3031420000000935], [111.93099100000006, 4.303057000000138], [111.93093599999997, 4.303016000000127], [111.93076600000012, 4.303016000000127], [111.93076500000006, 4.302887999999996], [111.93087799999995, 4.302803000000097], [111.93087799999995, 4.30271799999997], [111.93076500000006, 4.3026340000001255], [111.93076500000006, 4.302549000000056], [111.93087799999995, 4.3024640000001], [111.93087700000007, 4.30237900000003], [111.93076500000006, 4.302294999999958], [111.93076500000006, 4.302210000000059], [111.93087700000007, 4.302124999999933], [111.93076400000012, 4.302041000000088], [111.93087700000007, 4.301955000000078], [111.93087700000007, 4.301870000000008], [111.93076400000012, 4.301785999999993], [111.93087700000007, 4.301701000000037], [111.93076400000012, 4.301616000000138], [111.93076400000012, 4.301446000000055], [111.93087600000001, 4.30136200000004], [111.93087600000001, 4.301277000000141], [111.93076300000007, 4.301192000000015], [111.93076300000007, 4.3011070000001155], [111.93098800000001, 4.300937999999974], [111.9309330000001, 4.300896000000023], [111.93070799999992, 4.300896000000023], [111.93065000000013, 4.300853000000018], [111.93098800000001, 4.300598999999977], [111.93087500000007, 4.300514000000078], [111.93087500000007, 4.300344000000052], [111.93098800000001, 4.300259000000096], [111.93087500000007, 4.30017399999997], [111.93087500000007, 4.300005000000056], [111.93098700000013, 4.2999200000001], [111.93087400000002, 4.29983500000003], [111.93087400000002, 4.299666000000059], [111.93098700000013, 4.299580999999932], [111.93087400000002, 4.299496000000033], [111.93087400000002, 4.299327000000062], [111.93098600000002, 4.2992419999999925], [111.93087400000002, 4.2991570000000365], [111.93087300000008, 4.299031000000127], [111.93059300000004, 4.299031000000127], [111.93053500000002, 4.298988000000122], [111.93059300000004, 4.298945000000117], [111.9309310000001, 4.298944000000006], [111.93098600000002, 4.298902000000112], [111.9309310000001, 4.298861000000045], [111.93059300000004, 4.298861000000045], [111.93053500000002, 4.29881800000004], [111.93059300000004, 4.298775000000035], [111.93081799999999, 4.298775000000035], [111.93087300000008, 4.298733000000141], [111.93081799999999, 4.2986920000001305], [111.93036699999999, 4.2986920000001305], [111.93025499999993, 4.298608000000115], [111.92833999999993, 4.29861000000011], [111.92822699999999, 4.298524999999984], [111.9262, 4.298526999999979], [111.92614400000014, 4.298486000000139], [111.92608700000005, 4.298444000000018], [111.92462300000005, 4.298445000000129], [111.92450999999994, 4.298360000000002], [111.92315900000006, 4.298361999999997], [111.92304599999994, 4.298277000000041], [111.921694, 4.298279000000036], [111.92158100000006, 4.298194000000137], [111.92028499999998, 4.298195000000021], [111.92028400000004, 4.297938999999985], [111.92067999999995, 4.297938999999985], [111.92079300000006, 4.2978550000001405], [111.92158100000006, 4.297854000000086], [111.921694, 4.29776900000013], [111.922707, 4.297767000000135], [111.92282000000012, 4.297682000000066], [111.923946, 4.297681000000125], [111.92405900000011, 4.2975960000000555], [111.92541, 4.2975940000000605], [111.92552300000011, 4.297510000000045], [111.92721200000005, 4.29750800000005], [111.927325, 4.297423000000094], [111.93064600000014, 4.297418999999934], [111.93064600000014, 4.297248000000025], [111.930816, 4.297248000000025], [111.93087100000008, 4.297207000000014], [111.930816, 4.297165000000064], [111.93064600000014, 4.297165000000064], [111.93064600000014, 4.296993999999984], [111.930816, 4.296993999999984], [111.93087100000008, 4.296952000000033], [111.930816, 4.296911000000023], [111.93064600000014, 4.296911000000023], [111.93064500000008, 4.296697999999992], [111.93075799999997, 4.296613000000036], [111.93064500000008, 4.296529000000021], [111.93064500000008, 4.29631599999999], [111.93081500000011, 4.29631599999999], [111.93087000000003, 4.296274000000096], [111.93081500000011, 4.296231999999975], [111.930702, 4.296233000000029], [111.93064500000008, 4.296190000000024], [111.93075700000009, 4.296105000000125], [111.93064399999997, 4.296019999999999], [111.930702, 4.2959769999999935], [111.93081500000011, 4.29597600000011], [111.93087000000003, 4.2959350000000995], [111.93081500000011, 4.295892999999978], [111.930702, 4.295892999999978], [111.93064399999997, 4.295851000000084], [111.93075700000009, 4.295766000000128], [111.93064399999997, 4.295681000000059], [111.930702, 4.295637000000113], [111.93092700000011, 4.295637000000113], [111.93098200000003, 4.2955950000000485], [111.93092700000011, 4.295553999999981], [111.93075700000009, 4.295553999999981], [111.93075600000003, 4.295297999999946], [111.93092700000011, 4.295297999999946], [111.93098099999997, 4.295256000000052], [111.93092600000006, 4.2952150000000415], [111.93075600000003, 4.2952150000000415], [111.93075600000003, 4.294959000000006], [111.93092600000006, 4.294959000000006], [111.93098099999997, 4.294917000000055], [111.93075600000003, 4.294748000000084], [111.93075500000009, 4.294620000000009], [111.93092600000006, 4.294619000000068], [111.93098099999997, 4.294578999999999], [111.93092600000006, 4.294537000000048], [111.93081300000011, 4.294537000000048], [111.93075500000009, 4.294494000000043], [111.93086800000003, 4.294408999999973], [111.93081300000011, 4.2943670000000225], [111.9307, 4.2943670000000225], [111.93064199999998, 4.294324000000017], [111.9307, 4.294281000000012], [111.93092499999995, 4.294280000000128], [111.93098000000009, 4.294239000000118], [111.93092499999995, 4.294198000000051], [111.9307, 4.294198000000051], [111.93064199999998, 4.294155000000046], [111.9307, 4.294110999999987], [111.930812, 4.294110999999987], [111.93086699999998, 4.2940699999999765], [111.930812, 4.294028000000026], [111.9307, 4.294028000000026], [111.93064199999998, 4.293985000000021], [111.9307, 4.2939420000000155], [111.93092499999995, 4.2939420000000155], [111.93098000000009, 4.2939000000001215], [111.93092499999995, 4.293859000000111], [111.9307, 4.293859000000111], [111.93064199999998, 4.293816000000106], [111.93069900000006, 4.29377199999999], [111.930812, 4.29377199999999], [111.93086699999998, 4.293730000000096], [111.930812, 4.293689000000086], [111.93064199999998, 4.293689000000086], [111.9306410000001, 4.293475999999998], [111.93075400000004, 4.293391000000099], [111.9306410000001, 4.293305999999973], [111.9306410000001, 4.293137000000058], [111.93075400000004, 4.2930520000001025], [111.9306410000001, 4.292967000000033], [111.93063999999998, 4.292712999999935], [111.930698, 4.29266999999993], [111.93081100000012, 4.292753999999945], [111.93086600000004, 4.292712999999935], [111.93063999999998, 4.292544000000021], [111.93063999999998, 4.292459000000065], [111.93052700000004, 4.292373999999995], [111.93058500000006, 4.29233099999999], [111.93081000000001, 4.29233099999999], [111.93086499999998, 4.292289000000039], [111.93081000000001, 4.292248000000029], [111.93052700000004, 4.292248000000029], [111.93052700000004, 4.291822000000138], [111.93081000000001, 4.291822000000138], [111.93086499999998, 4.291780000000017], [111.93081000000001, 4.291739000000007], [111.93058400000001, 4.291739000000007], [111.93052799999998, 4.291696000000002], [111.9306390000001, 4.291611000000103], [111.93052599999999, 4.291525999999976], [111.93058400000001, 4.291483000000142], [111.93086400000004, 4.291483000000142], [111.93086400000004, 4.291058000000135], [111.93086299999999, 4.290847999999983], [111.9309760000001, 4.290761999999972], [111.93086299999999, 4.290677999999957], [111.93086299999999, 4.290508000000102], [111.9309760000001, 4.2904230000000325], [111.93086299999999, 4.290339000000017], [111.93086299999999, 4.290168999999935], [111.93097499999999, 4.290084000000036], [111.93086200000005, 4.2900000000000205], [111.93086200000005, 4.289873], [111.93058200000002, 4.289874000000054], [111.93052399999999, 4.289829999999995], [111.93058200000002, 4.28978699999999], [111.93103300000001, 4.289786000000049], [111.93108700000005, 4.289745000000039], [111.93103200000013, 4.2897029999999745], [111.93058200000002, 4.289704000000029], [111.93052399999999, 4.289661000000024], [111.93058200000002, 4.289618000000019], [111.93080700000013, 4.289617000000135], [111.93086200000005, 4.289576000000125], [111.93080700000013, 4.289534000000003], [111.93058200000002, 4.289534000000003], [111.93052399999999, 4.289490999999998], [111.93058200000002, 4.289447999999993], [111.93103200000013, 4.289447000000109], [111.93108700000005, 4.289404999999988], [111.93103200000013, 4.289365000000032], [111.93069400000002, 4.289365000000032], [111.93063600000005, 4.289322000000027], [111.93069400000002, 4.289278000000138], [111.93080700000013, 4.289278000000138], [111.93086200000005, 4.289237000000128], [111.93080700000013, 4.2891950000000065], [111.93052399999999, 4.2891950000000065], [111.93052300000011, 4.289067999999986], [111.93041100000005, 4.288983000000087], [111.93046799999996, 4.288939000000141], [111.93069400000002, 4.288939000000141], [111.93074800000005, 4.288897000000077], [111.93069300000013, 4.28885600000001], [111.93046799999996, 4.28885600000001], [111.93035500000002, 4.288771000000111], [111.93001800000008, 4.2887719999999945], [111.92990500000013, 4.288687999999979], [111.92956700000002, 4.288687999999979], [111.92945400000008, 4.28860300000008], [111.92922900000013, 4.288604000000134], [111.92911600000002, 4.288519000000065], [111.92877800000014, 4.288519000000065], [111.92866600000008, 4.288434000000109], [111.92832800000002, 4.288434999999993], [111.92821500000008, 4.288350999999977], [111.92799000000014, 4.288350999999977], [111.92787700000002, 4.288266000000078], [111.92753900000008, 4.288266000000078], [111.92742599999997, 4.288181000000122], [111.92708800000008, 4.288182000000063], [111.92697600000008, 4.288097000000107], [111.92652500000003, 4.288098000000048], [111.92641200000014, 4.288013999999976], [111.92607500000014, 4.288013999999976], [111.92596200000003, 4.2879290000000765], [111.92551099999997, 4.28792999999996], [111.92539900000014, 4.287845000000061], [111.92494799999997, 4.287845000000061], [111.92483500000003, 4.287760000000105], [111.92449699999992, 4.287761000000046], [111.92438500000009, 4.287677000000031], [111.92393400000009, 4.287677000000031], [111.92382099999998, 4.287592000000075], [111.92337100000003, 4.2875929999999585], [111.92331300000001, 4.287549999999953], [111.92337100000003, 4.287506000000064], [111.93080400000008, 4.28749700000003], [111.930859, 4.287455000000136], [111.93080400000008, 4.28741500000001], [111.93057900000008, 4.28741500000001], [111.93052100000011, 4.287372000000005], [111.93063400000005, 4.287287000000049], [111.93052100000011, 4.287201999999979], [111.93057900000008, 4.2871580000000336], [111.930859, 4.2871580000000336], [111.93085800000011, 4.286523000000102], [111.93097100000006, 4.286439000000087], [111.93085800000011, 4.286354000000131], [111.93085800000011, 4.286184000000105], [111.93097000000012, 4.286098999999979], [111.93085800000011, 4.28601400000008], [111.93085800000011, 4.285928999999953], [111.93097000000012, 4.285844000000054], [111.930857, 4.285760000000039], [111.930857, 4.285634000000073], [111.93057700000014, 4.285634000000073], [111.93051900000012, 4.285591000000068], [111.93068899999997, 4.285462999999936], [111.93080200000009, 4.285462999999936], [111.93091500000003, 4.285547000000008], [111.93097000000012, 4.285505000000057], [111.930857, 4.285421000000042], [111.930857, 4.285335999999916], [111.93068899999997, 4.285210000000006], [111.93057600000003, 4.285210000000006], [111.93051900000012, 4.285167000000001], [111.93057600000003, 4.285123999999996], [111.93102700000003, 4.2851230000000555], [111.931082, 4.285082000000045], [111.93102700000003, 4.285039999999981], [111.93057600000003, 4.285041000000035], [111.93051900000012, 4.284996999999976], [111.93057600000003, 4.284954000000141], [111.93080099999997, 4.284954000000141], [111.93085600000012, 4.28491200000002], [111.93080099999997, 4.284870000000126], [111.93046300000009, 4.28487100000001], [111.930406, 4.2848280000000045], [111.93046300000009, 4.284784999999999], [111.93068899999997, 4.284784000000116], [111.930743, 4.284743000000049], [111.93068800000009, 4.284700999999984], [111.93046300000009, 4.284702000000038], [111.93034999999998, 4.284617000000139], [111.93012500000003, 4.284617000000139], [111.93001200000009, 4.284532000000013], [111.92967500000009, 4.284532000000013], [111.92956199999998, 4.284447999999998], [111.92933700000003, 4.284449000000109], [111.92922400000009, 4.284363999999982], [111.92888599999998, 4.284363999999982], [111.92877300000009, 4.284279000000026], [111.92843499999998, 4.2842800000001375], [111.92832299999998, 4.284195000000011], [111.92798500000004, 4.284195000000011], [111.92787199999992, 4.284110999999996], [111.92753400000004, 4.284112000000107], [111.92742099999992, 4.2840269999999805], [111.92708300000004, 4.2840269999999805], [111.92697099999998, 4.283942000000081], [111.92651999999998, 4.283943000000136], [111.92640700000004, 4.28385900000012], [111.92607000000004, 4.28385900000012], [111.92595699999993, 4.283773999999994], [111.92550599999993, 4.283775000000105], [111.9253940000001, 4.283689999999979], [111.92505599999998, 4.283689999999979], [111.9249430000001, 4.283606000000134], [111.92449200000004, 4.283606000000134], [111.92438000000004, 4.283522000000119], [111.92404199999993, 4.283523000000002], [111.92392900000004, 4.283438000000103], [111.92347799999999, 4.283438000000103], [111.92342100000008, 4.283395000000098], [111.92347799999999, 4.283350999999982], [111.93079900000004, 4.283341999999948], [111.93085400000012, 4.283300999999938], [111.93079900000004, 4.283259000000044], [111.93057400000004, 4.283260000000098], [111.93051600000007, 4.283217000000093], [111.93062899999995, 4.283132000000023], [111.93051600000007, 4.283047000000067], [111.93057400000004, 4.283004000000062], [111.93079900000004, 4.283003000000008], [111.93085400000012, 4.282961999999998], [111.93079900000004, 4.282920000000047], [111.93057400000004, 4.282920000000047], [111.93051600000007, 4.282877999999926], [111.93057400000004, 4.282834000000037], [111.9306860000001, 4.282834000000037], [111.93074100000001, 4.2827930000000265], [111.9306860000001, 4.282751000000076], [111.93057299999998, 4.282751000000076], [111.93051600000007, 4.282708000000071], [111.93057299999998, 4.282664000000011], [111.93085400000012, 4.282664000000011], [111.93085300000001, 4.2823680000000195], [111.93096599999996, 4.28228300000012], [111.93085300000001, 4.282199000000105], [111.93085300000001, 4.282029000000023], [111.93096500000007, 4.281944000000124], [111.93085300000001, 4.281860000000108], [111.93085300000001, 4.281774999999982], [111.93096500000007, 4.281690000000083], [111.93085200000013, 4.2816060000000675], [111.93085200000013, 4.281521000000112], [111.9306840000001, 4.281394000000091], [111.93062899999995, 4.281435999999985], [111.93062899999995, 4.281521000000112], [111.93057200000004, 4.281564000000117], [111.93051400000007, 4.281521000000112], [111.93051400000007, 4.281308000000081], [111.93090999999998, 4.28130699999997], [111.93096500000007, 4.28126599999996], [111.93085200000013, 4.2811810000000605], [111.93085200000013, 4.280969000000084], [111.93102199999998, 4.280969000000084], [111.93107700000007, 4.28092700000002], [111.93102199999998, 4.280885000000069], [111.93085100000008, 4.280885999999953], [111.93085100000008, 4.280460000000062], [111.93113400000004, 4.280459000000008], [111.93130099999996, 4.280331999999987], [111.93124600000004, 4.280290999999977], [111.93113400000004, 4.280376000000047], [111.9310210000001, 4.280376000000047], [111.93085100000008, 4.280249000000026], [111.93090799999999, 4.280205000000137], [111.9310210000001, 4.280205000000137], [111.93107600000002, 4.280164000000127], [111.93096300000008, 4.280079000000001], [111.9310210000001, 4.280035000000112], [111.9311330000001, 4.280035000000112], [111.93118800000002, 4.27999299999999], [111.9311330000001, 4.2799530000000345], [111.9310210000001, 4.2799530000000345], [111.93090799999999, 4.28003700000005], [111.93085000000013, 4.279994000000045], [111.93085000000013, 4.279910000000029], [111.93096300000008, 4.279824000000019], [111.93096300000008, 4.27973900000012], [111.93107500000013, 4.279655000000105], [111.93101999999999, 4.279614000000095], [111.93090799999999, 4.27969800000011], [111.93073700000002, 4.27969800000011], [111.93073700000002, 4.2795710000000895], [111.93107500000013, 4.279316000000108], [111.93101999999999, 4.279273999999987], [111.93090700000005, 4.279359000000113], [111.93085000000013, 4.279316000000108], [111.93084900000008, 4.2791460000000825], [111.93096200000002, 4.279061000000127], [111.93084900000008, 4.278977000000111], [111.93084900000008, 4.278807000000086], [111.93096100000008, 4.278721999999959], [111.930906, 4.278680000000065], [111.93073600000014, 4.278680000000065], [111.93073600000014, 4.278553000000045], [111.93084900000008, 4.278468000000089], [111.93084799999997, 4.278383000000019], [111.93073600000014, 4.278299000000004], [111.93073500000003, 4.277620000000127], [111.93084700000009, 4.277535], [111.93073500000003, 4.277450000000101], [111.93073399999997, 4.27728100000013], [111.93084700000009, 4.2771960000000036], [111.93073399999997, 4.2771110000001045], [111.93073399999997, 4.276857000000064], [111.93079199999994, 4.276813000000118], [111.930904, 4.276898000000074], [111.93095899999992, 4.276857000000064], [111.93073399999997, 4.276688000000092], [111.93073399999997, 4.276559000000077], [111.930904, 4.276559000000077], [111.93095899999992, 4.276516999999956], [111.930904, 4.276476000000116], [111.93073300000003, 4.276476000000116], [111.93073300000003, 4.27622000000008], [111.93090300000011, 4.27622000000008], [111.93095800000003, 4.276178000000016], [111.93090300000011, 4.276136999999949], [111.93073300000003, 4.276136999999949], [111.93073300000003, 4.2758810000000835], [111.93090300000011, 4.2758810000000835], [111.93095800000003, 4.275839000000019], [111.93090300000011, 4.275797000000068], [111.93073300000003, 4.275798000000009], [111.93073199999998, 4.275541999999973], [111.93090300000011, 4.2755410000000325], [111.93095800000003, 4.275500000000022], [111.93090300000011, 4.275458000000128], [111.93073199999998, 4.275458000000128], [111.93073199999998, 4.275202000000036], [111.930902, 4.275202000000036], [111.93095699999992, 4.2751610000000255], [111.930902, 4.275119000000132], [111.93073199999998, 4.275119000000132], [111.9307310000001, 4.274567000000104], [111.93061799999998, 4.274483000000089], [111.93061799999998, 4.274355000000128], [111.93078900000006, 4.274355000000128], [111.93084399999998, 4.274313000000063], [111.930788, 4.274272000000053], [111.93061799999998, 4.274272000000053], [111.93061799999998, 4.274058999999966], [111.93050500000004, 4.2739740000000666], [111.930563, 4.273931000000061], [111.930788, 4.273931000000061], [111.9308430000001, 4.27388899999994], [111.930788, 4.273847000000046], [111.93045000000006, 4.2738480000001005], [111.93033699999995, 4.273764000000085], [111.92988700000006, 4.273764000000085], [111.92977400000012, 4.2736790000000155], [111.92921100000007, 4.27368000000007], [111.92909800000012, 4.273594999999943], [111.92853500000007, 4.273596000000055], [111.92842199999996, 4.273510999999928], [111.92774700000007, 4.273512000000039], [111.92763399999995, 4.273428000000024], [111.92673300000001, 4.273429000000078], [111.92662000000007, 4.273344000000009], [111.92571899999996, 4.273345000000063], [111.92566099999999, 4.273302000000058], [111.92571899999996, 4.2732579999999984], [111.92718300000013, 4.273257000000058], [111.92729600000007, 4.273171999999988], [111.92954800000007, 4.273169999999993], [111.92966100000001, 4.273083999999983], [111.93090000000001, 4.273083000000042], [111.93095499999993, 4.273040999999978], [111.93090000000001, 4.273000000000138], [111.93033600000007, 4.273000000000138], [111.93027899999998, 4.272957000000133], [111.93033600000007, 4.272914000000128], [111.93078700000007, 4.272913000000017], [111.93084200000004, 4.272871000000123], [111.93078700000007, 4.272830000000113], [111.93033600000007, 4.272830000000113], [111.93027899999998, 4.272787999999991], [111.93033600000007, 4.2727440000001025], [111.93089900000012, 4.2727440000001025], [111.93095400000004, 4.272701999999981], [111.93089900000012, 4.27266000000003], [111.93056100000001, 4.2726610000001415], [111.93050399999993, 4.272618000000136], [111.93056100000001, 4.27257400000002], [111.93078600000001, 4.27257400000002], [111.9308410000001, 4.272532000000126], [111.93078600000001, 4.272491000000116], [111.93056100000001, 4.272492], [111.93050300000004, 4.272448000000111], [111.93056100000001, 4.272405000000106], [111.93089900000012, 4.2724039999999945], [111.93095400000004, 4.272362999999984], [111.93089900000012, 4.27232100000009], [111.93072799999999, 4.27232100000009], [111.93072799999999, 4.272065000000055], [111.93089800000001, 4.272065000000055], [111.93095299999999, 4.272023999999988], [111.93089800000001, 4.271982000000094], [111.93072799999999, 4.271982000000094], [111.93072799999999, 4.271726000000058], [111.93089800000001, 4.271726000000058], [111.93095299999999, 4.271684000000107], [111.93089800000001, 4.271643000000097], [111.93072799999999, 4.271643000000097], [111.9307270000001, 4.271387000000061], [111.93089800000001, 4.271387000000061], [111.93095299999999, 4.27134499999994], [111.93089800000001, 4.27130399999993], [111.9307270000001, 4.27130399999993], [111.9307270000001, 4.2710910000000695], [111.93084000000005, 4.271006], [111.9307270000001, 4.270921000000044], [111.9307270000001, 4.2707520000001296], [111.93083899999993, 4.270667000000003], [111.93072599999999, 4.270582000000047], [111.93072599999999, 4.270413000000133], [111.93083899999993, 4.270328000000006], [111.93072599999999, 4.270243999999991], [111.93072599999999, 4.270159000000092], [111.93083800000005, 4.270073000000082], [111.93072599999999, 4.26998900000001], [111.93072599999999, 4.2699040000001105], [111.93083800000005, 4.269818999999984], [111.93072500000011, 4.269734000000085], [111.93072500000011, 4.269480000000044], [111.93083800000005, 4.269395000000088], [111.93078300000013, 4.269354000000078], [111.92976900000008, 4.269354999999962], [111.92965600000014, 4.269270000000063], [111.92875500000002, 4.269271000000117], [111.92864200000008, 4.269187000000102], [111.92740300000003, 4.269188000000042], [111.92729100000003, 4.26910399999997], [111.92605199999997, 4.269105000000081], [111.92593900000008, 4.269019999999955], [111.92481299999997, 4.26902200000012], [111.92470000000003, 4.268938000000105], [111.92379900000009, 4.268939000000046], [111.92368599999998, 4.26885400000009], [111.92267300000003, 4.268854999999974], [111.92256000000009, 4.268770000000075], [111.92143399999998, 4.268770999999958], [111.92132100000003, 4.268687000000114], [111.92025000000007, 4.268688000000054], [111.92024900000001, 4.268432000000018], [111.92368599999998, 4.2684280000000285], [111.92379800000003, 4.268343000000073], [111.92616400000003, 4.268340000000023], [111.92627600000003, 4.268255000000067], [111.92819100000003, 4.268253000000129], [111.92830300000008, 4.268168000000003], [111.92841600000003, 4.268253000000129], [111.92852900000014, 4.268168000000003], [111.92999300000014, 4.268166000000008], [111.93010500000014, 4.268081000000109], [111.93021800000008, 4.268166000000008], [111.93033100000002, 4.268165000000124], [111.93044300000003, 4.268079999999998], [111.93089400000008, 4.268079999999998], [111.930949, 4.268038000000104], [111.93089400000008, 4.267997000000037], [111.93033000000008, 4.267997000000037], [111.930273, 4.267954999999972], [111.93033000000008, 4.267911000000026], [111.93078100000014, 4.267911000000026], [111.93083600000006, 4.2678690000001325], [111.93078100000014, 4.267828000000122], [111.93033000000008, 4.267828000000122], [111.93027200000012, 4.267785000000117], [111.93033000000008, 4.267741000000001], [111.93089300000014, 4.267741000000001], [111.93094800000006, 4.267699000000107], [111.93089300000014, 4.267656999999986], [111.93055500000008, 4.267658000000097], [111.930498, 4.267615000000092], [111.93055500000008, 4.2675720000000865], [111.93078000000003, 4.2675720000000865], [111.93083499999995, 4.267530000000136], [111.93078000000003, 4.267488000000071], [111.93055500000008, 4.2674890000001255], [111.93049700000006, 4.267445000000066], [111.93055500000008, 4.267402000000061], [111.93089300000014, 4.26740100000012], [111.93094800000006, 4.26736000000011], [111.93089300000014, 4.267317999999989], [111.93078000000003, 4.267317999999989], [111.93072200000006, 4.267276000000095], [111.93083499999995, 4.267190999999968], [111.93072200000006, 4.267106000000069], [111.93078000000003, 4.267061999999953], [111.93089200000009, 4.267061999999953], [111.930947, 4.267020000000059], [111.93089200000009, 4.266980000000103], [111.93072200000006, 4.266980000000103], [111.93072200000006, 4.266808000000083], [111.93089200000009, 4.266808000000083], [111.930947, 4.266766000000018], [111.93089200000009, 4.266724999999951], [111.93072200000006, 4.266724999999951], [111.93072100000012, 4.2664689999999155], [111.93089200000009, 4.2664689999999155], [111.930947, 4.2664270000000215], [111.93089200000009, 4.266386000000011], [111.93072100000012, 4.266386000000011], [111.93072100000012, 4.266172999999981], [111.93083400000006, 4.266088000000025], [111.93072100000012, 4.2660040000000095], [111.93072100000012, 4.2659190000000535], [111.930833, 4.265833999999984], [111.930833, 4.265749000000028], [111.93072000000006, 4.265665000000013], [111.93072000000006, 4.265580000000114], [111.930833, 4.265494999999987], [111.93072000000006, 4.265410000000088], [111.93072000000006, 4.26515599999999], [111.93083200000007, 4.26506999999998], [111.93072000000006, 4.264986000000135], [111.93071899999995, 4.264562000000069], [111.93083200000007, 4.264476999999943], [111.93071899999995, 4.264393000000098], [111.93071899999995, 4.264308000000028], [111.93083100000001, 4.264223000000072], [111.93071899999995, 4.264138000000003], [111.93071800000007, 4.2638840000000755], [111.93060600000001, 4.263799000000006], [111.93060500000013, 4.263630000000035], [111.93071800000007, 4.263545000000136], [111.93066299999992, 4.263503000000014], [111.9301000000001, 4.263504000000125], [111.92998699999998, 4.263420000000053], [111.92683299999993, 4.263422999999989], [111.9267210000001, 4.263338999999974], [111.92345399999999, 4.263343000000077], [111.92334199999993, 4.2632580000000075], [111.92018800000011, 4.263261000000057], [111.92012999999992, 4.263218000000052], [111.92018800000011, 4.263175000000047], [111.9254820000001, 4.263168000000007], [111.9255940000001, 4.263083999999992], [111.92570700000005, 4.263083999999992], [111.9258190000001, 4.263168000000007], [111.92593199999999, 4.263083999999992], [111.92604499999993, 4.263083000000108], [111.92615699999999, 4.263167000000124], [111.9262700000001, 4.263083000000108], [111.93077499999998, 4.263078000000007], [111.93083000000007, 4.263036000000113], [111.93077499999998, 4.262993999999992], [111.93021199999993, 4.262995000000103], [111.93015400000013, 4.262952000000098], [111.93021199999993, 4.262907999999982], [111.93066200000004, 4.262907999999982], [111.93071699999996, 4.262866000000088], [111.93066200000004, 4.262825000000078], [111.93049200000002, 4.262825000000078], [111.93049100000013, 4.262568999999985], [111.93066200000004, 4.262568999999985], [111.93071699999996, 4.262527000000091], [111.93066200000004, 4.26248499999997], [111.9305490000001, 4.26248499999997], [111.93049100000013, 4.262443000000076], [111.9305490000001, 4.262400000000071], [111.9307740000001, 4.262398999999959], [111.93082900000002, 4.26235800000012], [111.9307740000001, 4.262316000000055], [111.93049100000013, 4.262316000000055], [111.93049100000013, 4.2620600000000195], [111.9308860000001, 4.2620600000000195], [111.93094100000002, 4.262018000000069], [111.9308860000001, 4.2619770000000585], [111.93049100000013, 4.2619770000000585], [111.93049100000013, 4.261805999999922], [111.9308860000001, 4.261805999999922], [111.93094100000002, 4.261764000000028], [111.9308860000001, 4.261723000000018], [111.93071600000007, 4.261723000000018], [111.93071600000007, 4.261594000000002], [111.93060300000013, 4.261509000000046], [111.93060300000013, 4.261425000000031], [111.93049000000002, 4.261340000000132], [111.93054800000004, 4.261297000000127], [111.93071699999996, 4.261297000000127], [111.93071699999996, 4.261466999999982], [111.9308860000001, 4.261466999999982], [111.93094100000002, 4.261425000000031], [111.93066000000005, 4.261213999999995], [111.93054800000004, 4.261213999999995], [111.93049000000002, 4.26117000000005], [111.93054699999993, 4.261127999999985], [111.93088500000005, 4.2611270000000445], [111.93094000000013, 4.261086000000034], [111.93088500000005, 4.26104400000014], [111.93054699999993, 4.261045000000024], [111.93049000000002, 4.261001000000135], [111.93054699999993, 4.26095800000013], [111.93066000000005, 4.26095800000013], [111.93071499999996, 4.260916000000009], [111.93066000000005, 4.260874000000115], [111.93054699999993, 4.260874000000115], [111.93048900000014, 4.2608319999999935], [111.93054699999993, 4.260788999999988], [111.93088500000005, 4.260788000000105], [111.93094000000013, 4.260745999999983], [111.93088500000005, 4.260704999999973], [111.93066000000005, 4.260704999999973], [111.93060200000008, 4.2606620000001385], [111.93065899999999, 4.260618000000079], [111.9307720000001, 4.260618000000079], [111.93082700000002, 4.260577000000012], [111.93071400000008, 4.260492999999997], [111.93071400000008, 4.2602370000001315], [111.93082600000014, 4.260153000000116], [111.93071400000008, 4.260068000000047], [111.93071400000008, 4.259983000000091], [111.93082600000014, 4.259897999999964], [111.93071300000003, 4.259813999999949], [111.93071300000003, 4.259559000000024], [111.93082600000014, 4.259475000000009], [111.93071300000003, 4.259390000000053], [111.93082500000003, 4.259304999999927], [111.93071300000003, 4.259221000000082], [111.93071200000009, 4.258965999999987], [111.93082500000003, 4.258881000000031], [111.93071200000009, 4.2587970000000155], [111.93071200000009, 4.258626000000106], [111.93093700000009, 4.258457000000135], [111.93088199999994, 4.258415000000014], [111.93026100000009, 4.258416000000125], [111.93026100000009, 4.258244999999988], [111.93071200000009, 4.258244999999988], [111.93071100000003, 4.258075000000133], [111.93088199999994, 4.258074000000079], [111.93093700000009, 4.258033000000069], [111.93088199999994, 4.257991000000118], [111.930769, 4.257991000000118], [111.93065600000006, 4.258077000000128], [111.93059899999997, 4.258033000000069], [111.93059899999997, 4.257948000000113], [111.93071100000003, 4.257864000000097], [111.93059800000009, 4.257778999999971], [111.93065600000006, 4.257735999999966], [111.930769, 4.257735000000082], [111.93082300000003, 4.257694000000072], [111.93071100000003, 4.257609000000116], [111.93071100000003, 4.257481000000041], [111.93088100000006, 4.257481000000041], [111.93093599999997, 4.25743900000009], [111.93088100000006, 4.25739800000008], [111.93076800000011, 4.25739800000008], [111.93070999999992, 4.257355000000075], [111.93082300000003, 4.257269999999949], [111.93082300000003, 4.2571850000000495], [111.93093500000009, 4.257099999999923], [111.93082300000003, 4.257015000000024], [111.93082199999998, 4.256846000000053], [111.93093500000009, 4.256760999999983], [111.93093500000009, 4.256676000000027], [111.93082199999998, 4.256592000000012], [111.93082199999998, 4.256507000000056], [111.93093500000009, 4.256421999999986], [111.93093399999998, 4.2563370000000305], [111.93082199999998, 4.256253000000015], [111.93082199999998, 4.25608299999999], [111.93093399999998, 4.2559980000000905], [111.93082100000004, 4.255914000000018], [111.93082100000004, 4.255657999999983], [111.93093399999998, 4.255574000000138], [111.93082100000004, 4.255489000000068], [111.93082100000004, 4.255404000000112], [111.9309330000001, 4.255320000000097], [111.93082100000004, 4.255234999999971], [111.93081999999998, 4.255064999999945], [111.9309330000001, 4.2549810000001], [111.93081999999998, 4.254896000000031], [111.93081999999998, 4.254684000000054], [111.93065200000012, 4.254684000000054], [111.93059499999998, 4.254641999999933], [111.93065200000012, 4.254598999999928], [111.93087700000007, 4.254598000000044], [111.93093199999998, 4.254557000000034], [111.93087700000007, 4.254515000000083], [111.93076500000006, 4.254515000000083], [111.93070700000004, 4.254472000000078], [111.93081999999998, 4.254387000000008], [111.93076500000006, 4.2543450000000576], [111.9305940000001, 4.2543450000000576], [111.9305940000001, 4.254089000000022], [111.93076400000012, 4.254089000000022], [111.93081900000004, 4.254047000000128], [111.93076400000012, 4.254007000000001], [111.93020100000007, 4.254007000000001], [111.93008799999996, 4.253922999999986], [111.92952500000013, 4.253922999999986], [111.92941200000001, 4.25383800000003], [111.92884900000013, 4.253839000000141], [111.92873700000013, 4.253754000000015], [111.92817299999996, 4.253755000000126], [111.92806100000013, 4.253671000000111], [111.92749800000007, 4.253671999999995], [111.92738499999996, 4.253587000000039], [111.92670900000002, 4.253587000000039], [111.92659600000007, 4.253503000000023], [111.92603300000002, 4.253503000000023], [111.92592000000008, 4.253418000000124], [111.92535700000002, 4.253419000000008], [111.92524500000002, 4.253334999999993], [111.92468100000008, 4.253336000000104], [111.92456900000002, 4.2532509999999775], [111.92400600000002, 4.253252000000032], [111.92389300000008, 4.253167000000133], [111.92321700000008, 4.253167000000133], [111.92310400000014, 4.253083000000117], [111.92254100000008, 4.253083000000117], [111.92242799999997, 4.252999000000102], [111.92186500000014, 4.252999999999986], [111.92175300000008, 4.252915000000087], [111.92118900000014, 4.252916000000141], [111.92107700000014, 4.252831000000015], [111.92040100000014, 4.252832000000126], [111.92028800000003, 4.252746999999999], [111.920118, 4.252746999999999], [111.92011700000012, 4.251812000000086], [111.92028699999997, 4.251812000000086], [111.92040000000009, 4.251728000000071], [111.92310300000008, 4.251725000000022], [111.92321500000008, 4.251640000000066], [111.92558000000002, 4.2516370000000165], [111.92569300000014, 4.251552000000061], [111.92862100000008, 4.251548000000128], [111.92873400000002, 4.251463000000001], [111.93087400000002, 4.251460000000122], [111.9309290000001, 4.251419999999996], [111.93087400000002, 4.251378000000102], [111.93031000000008, 4.251378999999986], [111.93025299999994, 4.251335000000097], [111.93031000000008, 4.251292000000092], [111.93076100000008, 4.251290999999981], [111.930816, 4.251250000000141], [111.93076100000008, 4.25120800000002], [111.93031000000008, 4.251209000000131], [111.93025299999994, 4.2511650000000145], [111.93031000000008, 4.2511230000001206], [111.93087300000008, 4.251122000000009], [111.93092800000005, 4.251080000000115], [111.93087300000008, 4.251039000000105], [111.93053500000002, 4.251039000000105], [111.93047800000011, 4.2509960000001], [111.93053500000002, 4.250951999999984], [111.93075999999996, 4.250951999999984], [111.93081500000011, 4.25091000000009], [111.93075999999996, 4.25086900000008], [111.93053500000002, 4.25086900000008], [111.930477, 4.250826000000075], [111.93053500000002, 4.2507830000000695], [111.93087300000008, 4.2507830000000695], [111.93092800000005, 4.250741000000119], [111.93087300000008, 4.2507000000001085], [111.93075999999996, 4.2507000000001085], [111.930702, 4.250656000000049], [111.93081500000011, 4.250571000000093], [111.930702, 4.250485999999967], [111.93075999999996, 4.250444000000073], [111.93087200000002, 4.250444000000073], [111.93092700000011, 4.250401999999951], [111.93087200000002, 4.250360000000057], [111.930702, 4.250361000000112], [111.930702, 4.250358999999946], [111.930702, 4.250105000000076], [111.93087200000002, 4.250104000000022], [111.93092700000011, 4.2500630000000115], [111.93087200000002, 4.250021000000061], [111.930702, 4.250021000000061], [111.93070100000006, 4.249765000000025], [111.93087200000002, 4.249765000000025], [111.93092700000011, 4.249724000000015], [111.93087200000002, 4.249682000000064], [111.93070100000006, 4.249682000000064], [111.93070100000006, 4.249426000000028], [111.93087100000008, 4.249426000000028], [111.93092600000006, 4.249384000000134], [111.93087100000008, 4.249343000000124], [111.93070100000006, 4.249343000000124], [111.93070100000006, 4.249173000000042], [111.93042000000008, 4.249173000000042], [111.930363, 4.249130999999977], [111.93042000000008, 4.249087000000031], [111.93087100000008, 4.249087000000031], [111.93092600000006, 4.249045000000137], [111.93087100000008, 4.249004000000127], [111.93042000000008, 4.249004000000127], [111.93036200000012, 4.248961000000122], [111.93042000000008, 4.248917000000006], [111.9307, 4.248917000000006], [111.9307, 4.248706000000141], [111.93081300000011, 4.248621000000071], [111.9307, 4.248536000000115], [111.9307, 4.2484520000001], [111.930812, 4.248366999999973], [111.9307, 4.248282000000074], [111.93069900000006, 4.248028000000033], [111.930812, 4.2479430000000775], [111.93069900000006, 4.247859000000062], [111.93069900000006, 4.247689000000037], [111.93081100000012, 4.247603000000026], [111.93069900000006, 4.247519000000011], [111.930698, 4.246966999999984], [111.93086800000003, 4.246966000000043], [111.93092299999995, 4.246925000000033], [111.93086800000003, 4.246883000000139], [111.930698, 4.246883000000139], [111.930698, 4.246627000000103], [111.93086800000003, 4.246627000000103], [111.93092299999995, 4.246586000000093], [111.93086800000003, 4.246545000000026], [111.93064300000009, 4.246545000000026], [111.93058500000006, 4.246502000000021], [111.93069700000012, 4.246417000000122], [111.93058500000006, 4.246331999999995], [111.93064199999998, 4.246288000000106], [111.93086699999998, 4.246288000000106], [111.93092200000007, 4.246247000000096], [111.93081000000001, 4.24616200000014], [111.93080900000012, 4.245992000000115], [111.93092200000007, 4.2459080000000995], [111.93080900000012, 4.245822999999973], [111.93080900000012, 4.2456529999999475], [111.93092200000007, 4.245569000000103], [111.93080900000012, 4.245484000000033], [111.93080900000012, 4.245314000000008], [111.93092099999996, 4.245229999999935], [111.93080800000007, 4.245145000000036], [111.93080800000007, 4.245018000000016], [111.93058500000006, 4.245018000000016], [111.93058500000006, 4.245145000000036], [111.93052799999998, 4.245188999999925], [111.93047100000007, 4.245145000000036], [111.93046999999996, 4.24493300000006], [111.93086600000004, 4.244932000000006], [111.93092099999996, 4.244890000000055], [111.93086600000004, 4.244849000000045], [111.93052799999998, 4.244849000000045], [111.93046999999996, 4.24480600000004], [111.93052799999998, 4.24476199999998], [111.93075299999992, 4.24476199999998], [111.93080800000007, 4.2447210000001405], [111.93075299999992, 4.244679000000019], [111.93052799999998, 4.244679000000019], [111.93046999999996, 4.244636000000014], [111.93052799999998, 4.244593000000009], [111.93086499999998, 4.244593000000009], [111.93092000000007, 4.244551000000115], [111.93086499999998, 4.244510000000048], [111.93052700000004, 4.244510000000048], [111.93046999999996, 4.244467000000043], [111.93052700000004, 4.244422999999983], [111.93075299999992, 4.244422999999983], [111.93080800000007, 4.244381000000033], [111.93075299999992, 4.244340000000022], [111.9283870000001, 4.2443430000001285], [111.9282750000001, 4.244259000000113], [111.92579700000005, 4.244261999999992], [111.9256840000001, 4.244177000000036], [111.92399499999999, 4.244179000000031], [111.92388200000005, 4.244094000000132], [111.92230500000011, 4.244096000000127], [111.9221930000001, 4.244011], [111.92039100000005, 4.244012999999995], [111.92027800000011, 4.24392899999998], [111.92010800000008, 4.24392899999998], [111.92010699999997, 4.243503000000089], [111.92039000000011, 4.243503000000089], [111.920502, 4.243418000000133], [111.92106600000011, 4.243417000000079], [111.92117799999994, 4.243333000000007], [111.921741, 4.243332000000123], [111.92185400000011, 4.243246999999997], [111.92253000000011, 4.243246000000113], [111.92264200000011, 4.243160999999986], [111.92331800000011, 4.243160000000103], [111.92343000000011, 4.243074999999976], [111.92410600000011, 4.243074000000092], [111.92421900000005, 4.242990000000077], [111.92500700000005, 4.242988999999966], [111.92511900000005, 4.242904000000067], [111.9260210000001, 4.242902999999956], [111.92613299999994, 4.242818000000057], [111.92725900000005, 4.242816000000062], [111.92737199999999, 4.242730999999935], [111.9305250000001, 4.242727000000002], [111.93058000000002, 4.242685999999992], [111.93046799999996, 4.24260199999992], [111.9305250000001, 4.242558000000031], [111.93075000000005, 4.242558000000031], [111.93080499999996, 4.242516000000137], [111.93075000000005, 4.24247500000007], [111.93063799999999, 4.24247500000007], [111.93046700000008, 4.242346999999995], [111.9305250000001, 4.24230399999999], [111.9306370000001, 4.24230399999999], [111.93069200000002, 4.242262000000039], [111.9306370000001, 4.242221000000029], [111.93046700000008, 4.242221000000029], [111.93046700000008, 4.241880000000094], [111.9306370000001, 4.241880000000094], [111.93069200000002, 4.241837999999973], [111.9306370000001, 4.241796000000022], [111.93046700000008, 4.241797000000133], [111.93046599999997, 4.241584000000103], [111.93057900000008, 4.241498999999976], [111.93046599999997, 4.241414000000077], [111.93046599999997, 4.241201000000046], [111.930861, 4.241201000000046], [111.93091600000008, 4.241159000000096], [111.930861, 4.241118000000085], [111.93063600000005, 4.241118000000085], [111.93057800000003, 4.24107500000008], [111.93063600000005, 4.241032000000075], [111.93074899999993, 4.241032000000075], [111.93080299999997, 4.240989999999954], [111.93074800000005, 4.240949000000114], [111.93052300000011, 4.240949000000114], [111.93046500000008, 4.240906000000109], [111.93052300000011, 4.24086200000005], [111.930861, 4.24086200000005], [111.93091600000008, 4.240820000000099], [111.930861, 4.240778000000034], [111.93052300000011, 4.240779000000089], [111.93046599999997, 4.240735000000029], [111.93052300000011, 4.240693000000078], [111.93074800000005, 4.240693000000078], [111.93080299999997, 4.240651000000014], [111.93074800000005, 4.240609000000063], [111.93052300000011, 4.240609999999947], [111.93046500000008, 4.240566000000058], [111.93052300000011, 4.240523000000053], [111.930861, 4.240521999999999], [111.93091500000003, 4.2404809999999316], [111.93086000000011, 4.240439000000038], [111.93069000000003, 4.240439000000038], [111.93069000000003, 4.240183000000002], [111.93086000000011, 4.240183000000002], [111.93091500000003, 4.240141999999992], [111.93086000000011, 4.240100000000041], [111.93069000000003, 4.240100000000041], [111.93068899999997, 4.239844000000005], [111.93086000000011, 4.239844000000005], [111.93091500000003, 4.239802000000111], [111.93086000000011, 4.239761000000044], [111.93068899999997, 4.239761000000044], [111.93068899999997, 4.239505000000008], [111.930859, 4.239505000000008], [111.93091399999992, 4.239463000000114], [111.930859, 4.239422000000104], [111.93068899999997, 4.239422000000104], [111.93068899999997, 4.239253000000133], [111.93052100000011, 4.239253000000133], [111.93046300000009, 4.2392090000000735], [111.93052100000011, 4.239166000000068], [111.930859, 4.239166000000068], [111.93091399999992, 4.239124000000118], [111.930859, 4.239083000000107], [111.93052100000011, 4.239083999999991], [111.93046300000009, 4.239040000000102], [111.93052100000011, 4.238997000000097], [111.93063299999994, 4.238997000000097], [111.93068800000009, 4.238954999999976], [111.93063299999994, 4.238913000000082], [111.930408, 4.238914000000136], [111.93034999999998, 4.238870000000077], [111.930408, 4.238827000000072], [111.930859, 4.2388259999999605], [111.93091300000003, 4.2387860000000614], [111.93085800000011, 4.238744000000111], [111.93068800000009, 4.238744000000111], [111.93068800000009, 4.238616000000036], [111.93080099999997, 4.23853100000008], [111.93068800000009, 4.238447000000065], [111.93068800000009, 4.238277000000039], [111.93080000000009, 4.238191000000029], [111.93068699999998, 4.238107000000014], [111.9306860000001, 4.237090000000023], [111.93046099999992, 4.236919999999998], [111.93046099999992, 4.2368359999999825], [111.93057299999998, 4.236751000000083], [111.93046000000004, 4.2366660000001275], [111.93046000000004, 4.236412000000087], [111.93057299999998, 4.23632699999996], [111.930518, 4.236285000000066], [111.93040500000012, 4.236285000000066], [111.9303470000001, 4.236242000000061], [111.93040500000012, 4.236199000000056], [111.93085500000001, 4.236199000000056], [111.93090999999998, 4.236157000000105], [111.93085500000001, 4.236115000000041], [111.93040500000012, 4.236116000000095], [111.9303470000001, 4.23607300000009], [111.93040500000012, 4.2360290000000305], [111.93063000000006, 4.2360290000000305], [111.93068499999998, 4.23598700000008], [111.93057200000004, 4.23590200000001], [111.93063000000006, 4.235860000000059], [111.93085500000001, 4.235859000000005], [111.93090999999998, 4.235817999999938], [111.93085500000001, 4.235776000000044], [111.93051700000012, 4.235776999999928], [111.93045899999993, 4.235733000000039], [111.93051700000012, 4.235690000000034], [111.93063000000006, 4.235690000000034], [111.9306840000001, 4.235648000000083], [111.93062899999995, 4.235606000000018], [111.93051700000012, 4.235607000000073], [111.93045899999993, 4.235563000000013], [111.93051700000012, 4.2355210000000625], [111.93085500000001, 4.235520000000008], [111.93090900000004, 4.235478999999998], [111.93085400000012, 4.235437000000047], [111.9306840000001, 4.235437000000047], [111.9306840000001, 4.235181000000011], [111.93085400000012, 4.235181000000011], [111.93090900000004, 4.2351390000001174], [111.93085400000012, 4.23509800000005], [111.9306840000001, 4.23509800000005], [111.93068299999999, 4.234842000000015], [111.93085400000012, 4.234842000000015], [111.93090900000004, 4.234800000000121], [111.93085400000012, 4.2347590000001105], [111.93068299999999, 4.2347590000001105], [111.93068299999999, 4.234503000000075], [111.93085300000001, 4.234503000000075], [111.93090799999999, 4.234461000000124], [111.93085300000001, 4.234419000000003], [111.93068299999999, 4.234420000000114], [111.93068299999999, 4.234207000000083], [111.93079500000005, 4.234122000000127], [111.93068299999999, 4.234037000000058], [111.9306820000001, 4.233952000000102], [111.93057000000005, 4.233868000000086], [111.93062700000002, 4.233824000000027], [111.93074000000013, 4.233824000000027], [111.93079500000005, 4.23378299999996], [111.93074000000013, 4.233741000000066], [111.93062700000002, 4.233741000000066], [111.93056899999999, 4.233698000000061], [111.93079500000005, 4.233528000000035], [111.93062700000002, 4.233402000000069], [111.93045699999993, 4.233402000000069], [111.93045600000005, 4.233273999999994], [111.93068099999999, 4.233104000000139], [111.93045600000005, 4.232934999999998], [111.93045600000005, 4.2327220000001375], [111.93062600000007, 4.2327220000001375], [111.93068099999999, 4.232680000000016], [111.93062600000007, 4.232639000000006], [111.93045600000005, 4.232639000000006], [111.930455, 4.2323410000000194], [111.93056800000011, 4.232257000000004], [111.930455, 4.232172000000105], [111.930455, 4.232086999999979], [111.93062500000002, 4.231959000000074], [111.93073800000013, 4.231959000000074], [111.93079300000005, 4.231917000000124], [111.93073800000013, 4.231876000000113], [111.93051200000008, 4.231876000000113], [111.930455, 4.231833000000108], [111.93051200000008, 4.231789000000049], [111.93062500000002, 4.231789000000049], [111.93068000000011, 4.231747999999982], [111.93062500000002, 4.231706000000088], [111.93051200000008, 4.231706000000088], [111.93045400000005, 4.231663000000083], [111.93051200000008, 4.231620000000078], [111.93085000000013, 4.231620000000078], [111.93090500000005, 4.231577999999956], [111.93085000000013, 4.231537000000117], [111.93051200000008, 4.231537000000117], [111.93045400000005, 4.2314940000001116], [111.93051200000008, 4.231450000000052], [111.93062400000008, 4.231450000000052], [111.93067900000005, 4.231408000000101], [111.93062400000008, 4.231367000000091], [111.93051200000008, 4.231367000000091], [111.930455, 4.231324000000086], [111.93051200000008, 4.231281000000081], [111.93085000000013, 4.231281000000081], [111.930904, 4.231239000000016], [111.93084900000008, 4.231197000000066], [111.93067900000005, 4.231197999999949], [111.93067900000005, 4.230942000000084], [111.93084900000008, 4.23094100000003], [111.930904, 4.23090000000002], [111.93084900000008, 4.230858000000069], [111.93067900000005, 4.230858000000069], [111.93067800000011, 4.230602000000033], [111.93084900000008, 4.230602000000033], [111.930904, 4.230560000000139], [111.93084900000008, 4.230519000000129], [111.93067800000011, 4.230519000000129], [111.93067800000011, 4.230263000000036], [111.93084799999997, 4.230263000000036], [111.93090300000011, 4.230220999999972], [111.93084799999997, 4.230180000000132], [111.93067800000011, 4.230180000000132], [111.93067800000011, 4.230010000000107], [111.93051000000008, 4.230010000000107], [111.93045200000006, 4.229967999999985], [111.93051000000008, 4.229924000000096], [111.93084799999997, 4.229924000000096], [111.93090300000011, 4.229881999999975], [111.93084799999997, 4.229841000000135], [111.93051000000008, 4.229841000000135], [111.93045200000006, 4.22979800000013], [111.93051000000008, 4.229754000000071], [111.93062200000008, 4.229754000000071], [111.93067700000006, 4.22971200000012], [111.93062200000008, 4.229671999999994], [111.93039700000014, 4.229671999999994], [111.93034000000006, 4.2296289999999885], [111.93039700000014, 4.2295850000001], [111.93084700000009, 4.2295850000001], [111.930902, 4.229542999999978], [111.93084700000009, 4.229501000000084], [111.93039700000014, 4.229502000000139], [111.93034000000006, 4.229458000000079], [111.93039700000014, 4.229415000000074], [111.93062200000008, 4.229415000000074], [111.93067700000006, 4.229374000000064], [111.93062200000008, 4.229332000000113], [111.92825700000003, 4.229334999999992], [111.92814400000009, 4.229250000000093], [111.92296300000004, 4.229257000000132], [111.92285099999998, 4.2291720000000055], [111.92149900000004, 4.229173000000117], [111.92144100000002, 4.2291300000001115], [111.92149900000004, 4.229085999999995], [111.92566600000004, 4.2290810000001215], [111.92577899999998, 4.228997000000106], [111.92600399999992, 4.228997000000106], [111.92611700000003, 4.2290810000001215], [111.92938300000009, 4.229076999999961], [111.92949499999992, 4.229162000000088], [111.93067700000006, 4.229160000000093], [111.93067700000006, 4.229035000000067], [111.93078900000006, 4.228949999999941], [111.93067599999995, 4.228865000000042], [111.93067599999995, 4.228780000000086], [111.93078900000006, 4.228695000000016], [111.93067599999995, 4.228611000000001], [111.93067599999995, 4.228356000000019], [111.930788, 4.228271000000063], [111.93067599999995, 4.228185999999994], [111.93067500000006, 4.228017000000023], [111.930788, 4.2279320000001235], [111.93067500000006, 4.227846999999997], [111.93067500000006, 4.227678000000026], [111.93078700000007, 4.227593000000127], [111.93067500000006, 4.227508], [111.93067500000006, 4.227339000000086], [111.93078700000007, 4.22725400000013], [111.93067399999995, 4.22716900000006], [111.93067399999995, 4.226998999999978], [111.93078700000007, 4.226914000000079], [111.93067399999995, 4.226828999999952], [111.93067399999995, 4.226745000000108], [111.93056100000001, 4.226660000000038], [111.93061900000004, 4.226617000000033], [111.9307310000001, 4.226617000000033], [111.93078600000001, 4.226575000000082], [111.93067399999995, 4.2264900000000125], [111.93067300000007, 4.226278000000036], [111.93084399999998, 4.226276999999925], [111.93089800000001, 4.226235999999915], [111.9308430000001, 4.226194000000021], [111.93067300000007, 4.226194000000021], [111.93067300000007, 4.225937999999985], [111.9308430000001, 4.225937999999985], [111.93089800000001, 4.225896999999975], [111.93067300000007, 4.225728000000004], [111.93067199999996, 4.225598999999988], [111.9308430000001, 4.225598999999988], [111.93089800000001, 4.2255570000000375], [111.9308430000001, 4.225516000000027], [111.93072999999998, 4.225516000000027], [111.93067300000007, 4.225474000000133], [111.93078500000007, 4.225388000000123], [111.93072999999998, 4.225347000000113], [111.93056100000001, 4.225347000000113], [111.93056100000001, 4.225474000000133], [111.93050500000004, 4.225516000000027], [111.93044700000002, 4.225474000000133], [111.93044700000002, 4.225259999999992], [111.93084200000004, 4.225259999999992], [111.93089700000013, 4.225218000000098], [111.93084200000004, 4.2251770000000874], [111.93050399999993, 4.2251770000000874], [111.93044700000002, 4.225135000000137], [111.93050399999993, 4.225091000000077], [111.93072999999998, 4.225091000000077], [111.93078400000002, 4.225049000000126], [111.9307290000001, 4.225008000000116], [111.93050399999993, 4.225008000000116], [111.93044600000013, 4.224965000000111], [111.93050399999993, 4.224920999999995], [111.93084200000004, 4.224920999999995], [111.93089700000013, 4.224879000000101], [111.93084200000004, 4.2248369999999795], [111.93050399999993, 4.224838000000091], [111.93044600000013, 4.224795000000086], [111.93050399999993, 4.22475200000008], [111.9307290000001, 4.22475200000008], [111.93078400000002, 4.22471000000013], [111.9307290000001, 4.224668000000065], [111.93039099999999, 4.2246690000001195], [111.93027800000004, 4.22458400000005], [111.92903999999993, 4.224585000000104], [111.92892700000004, 4.224499999999978], [111.92768799999999, 4.224501999999973], [111.92757500000005, 4.224418000000128], [111.92633600000005, 4.2244190000000685], [111.92622399999999, 4.224335000000053], [111.92509700000005, 4.224336000000108], [111.92498499999999, 4.224250999999981], [111.92408400000005, 4.224252000000092], [111.92397100000011, 4.224168000000077], [111.92295700000005, 4.224169000000131], [111.92284500000005, 4.224084000000062], [111.92194400000011, 4.224085000000116], [111.921831, 4.224001000000101], [111.92093000000006, 4.2240019999999845], [111.92087200000003, 4.223958000000096], [111.92093000000006, 4.2239150000000905], [111.92667399999993, 4.223908000000051], [111.92678599999999, 4.22399299999995], [111.92948899999999, 4.223990000000072], [111.9296020000001, 4.224075000000028], [111.93067100000007, 4.224073000000033], [111.93067000000002, 4.2239470000000665], [111.93078300000013, 4.223861999999997], [111.93067000000002, 4.223777000000041], [111.93067000000002, 4.223692000000142], [111.93078300000013, 4.223607000000015], [111.93067000000002, 4.223523], [111.93067000000002, 4.223352999999975], [111.93078200000002, 4.223268000000019], [111.93067000000002, 4.223184000000003], [111.93066900000008, 4.222929000000022], [111.93078200000002, 4.222845000000007], [111.93066900000008, 4.2227600000001075], [111.93066900000008, 4.222590000000082], [111.93078100000014, 4.222506000000067], [111.93066900000008, 4.222421000000111], [111.93066800000003, 4.222251000000085], [111.93078100000014, 4.222165999999959], [111.93066800000003, 4.22208100000006], [111.93066800000003, 4.2219120000000885], [111.93078100000014, 4.221827000000019], [111.93072599999999, 4.221785999999952], [111.93055500000008, 4.221785999999952], [111.93055500000008, 4.221572999999921], [111.93072500000011, 4.221445000000017], [111.93083800000005, 4.221444000000076], [111.93089300000014, 4.221403000000066], [111.93083800000005, 4.221361000000002], [111.930612, 4.221361000000002], [111.93055500000008, 4.221317999999997], [111.93066700000008, 4.221233999999981], [111.93055500000008, 4.221149000000025], [111.930612, 4.221105000000136], [111.93083699999994, 4.221105000000136], [111.93089200000009, 4.221064000000126], [111.93083699999994, 4.221022000000005], [111.930612, 4.221022000000005], [111.93055399999997, 4.220979], [111.93066700000008, 4.2208949999999845], [111.93055399999997, 4.220810000000029], [111.930612, 4.22076600000014], [111.93083699999994, 4.22076600000014], [111.93089200000009, 4.220724000000018], [111.93083699999994, 4.220683000000008], [111.93066700000008, 4.220683000000008], [111.93066600000003, 4.220426999999972], [111.93083699999994, 4.220426999999972], [111.93089099999997, 4.220385000000078], [111.93083600000006, 4.220344000000011], [111.93066600000003, 4.220344000000011], [111.93066600000003, 4.220087999999976], [111.93083600000006, 4.220087999999976], [111.93089099999997, 4.220046000000082], [111.93083600000006, 4.220004000000131], [111.93066600000003, 4.2200050000000715], [111.93066499999992, 4.219749000000036], [111.93083600000006, 4.219748000000095], [111.93089099999997, 4.219707000000085], [111.93083600000006, 4.219664999999964], [111.93066499999992, 4.219664999999964], [111.93066499999992, 4.219453000000044], [111.93077800000003, 4.219368000000088], [111.93066499999992, 4.219284000000073], [111.93066499999992, 4.219114000000047], [111.93077699999998, 4.219028000000037], [111.93072200000006, 4.218987000000027], [111.93061, 4.218987000000027], [111.93055300000009, 4.218945000000076], [111.93066400000004, 4.218859000000066], [111.93066400000004, 4.218773999999996], [111.93032599999998, 4.21852100000001], [111.93038399999995, 4.218477000000121], [111.93060900000012, 4.218477000000121], [111.93072200000006, 4.21856200000002], [111.93077699999998, 4.218520000000126], [111.93060900000012, 4.218393999999989], [111.93015800000006, 4.218393999999989], [111.93010099999998, 4.218350999999984], [111.93021300000004, 4.218267000000139], [111.93021300000004, 4.218096000000003], [111.9301000000001, 4.218011999999987], [111.9301000000001, 4.217715000000112], [111.93072100000012, 4.217714000000058], [111.93077600000004, 4.217672000000107], [111.93072100000012, 4.217631000000097], [111.93049500000006, 4.217631000000097], [111.93043799999998, 4.217588000000092], [111.93049500000006, 4.217543999999975], [111.930608, 4.217543999999975], [111.93066299999992, 4.217502999999965], [111.930608, 4.217461000000071], [111.93049500000006, 4.217461000000071], [111.9304370000001, 4.217418000000066], [111.93049500000006, 4.217375000000061], [111.930833, 4.217375000000061], [111.9308880000001, 4.21733300000011], [111.930833, 4.2172920000001], [111.93049500000006, 4.2172920000001], [111.9304370000001, 4.217249000000095], [111.93049500000006, 4.217205000000035], [111.93060700000012, 4.217205000000035], [111.93066200000004, 4.217163000000085], [111.93060700000012, 4.217122000000074], [111.93049500000006, 4.217122000000074], [111.9304370000001, 4.217079000000069], [111.93049500000006, 4.217036000000064], [111.930833, 4.217036000000064], [111.93088699999998, 4.216993999999943], [111.93083200000007, 4.216952000000049], [111.93066200000004, 4.216952999999933], [111.93066200000004, 4.216739000000018], [111.93072000000006, 4.216697000000067], [111.93083200000007, 4.216780000000028], [111.93088699999998, 4.216739000000018], [111.93066200000004, 4.216570000000047], [111.93066099999999, 4.216357000000016], [111.93083200000007, 4.216357000000016], [111.93088699999998, 4.216315000000122], [111.93083200000007, 4.216274000000055], [111.93066099999999, 4.216274000000055], [111.93066099999999, 4.216102000000035], [111.93083100000001, 4.216102000000035], [111.9308860000001, 4.216061000000025], [111.93083100000001, 4.2160200000000145], [111.93066099999999, 4.2160200000000145], [111.93066099999999, 4.215763999999979], [111.93083100000001, 4.215763999999979], [111.9308860000001, 4.215722000000085], [111.93083100000001, 4.215681000000018], [111.93066099999999, 4.215681000000018], [111.93066000000005, 4.215552000000002], [111.93054800000004, 4.215467000000103], [111.93060500000013, 4.215424999999982], [111.93083100000001, 4.215424999999982], [111.9308860000001, 4.215383000000088], [111.93083100000001, 4.215341000000137], [111.93066000000005, 4.215342000000078], [111.93065899999999, 4.214365999999927], [111.9307720000001, 4.214279999999917], [111.93065899999999, 4.214195000000018], [111.93065899999999, 4.214111000000003], [111.930771, 4.214026000000047], [111.93065899999999, 4.213940999999977], [111.93065800000005, 4.213772000000006], [111.930771, 4.213687000000107], [111.93065800000005, 4.21360199999998], [111.93065800000005, 4.213433000000009], [111.93077000000011, 4.21334800000011], [111.93071499999996, 4.213305999999989], [111.92992699999996, 4.2133070000001], [111.92981400000002, 4.213221999999973], [111.92970200000002, 4.2133070000001], [111.92958900000008, 4.2132230000000845], [111.92868800000014, 4.213224000000139], [111.92857500000002, 4.213140000000124], [111.92744900000014, 4.213141000000007], [111.92733700000008, 4.213056000000108], [111.92621000000008, 4.213056999999992], [111.92609800000008, 4.212972999999977], [111.92497100000008, 4.212974000000088], [111.92485900000003, 4.212889000000132], [111.92384499999997, 4.212890000000016], [111.92373200000009, 4.2128060000000005], [111.92271900000009, 4.212807000000112], [111.92260599999997, 4.212723000000096], [111.92159200000009, 4.21272399999998], [111.92148000000009, 4.212639000000081], [111.92046600000003, 4.212640000000135], [111.92035300000009, 4.212555000000009], [111.92007000000012, 4.212555000000009], [111.92007000000012, 4.2123840000001], [111.92778600000014, 4.2123750000000655], [111.92789900000002, 4.212289999999939], [111.93082700000002, 4.21228700000006], [111.93088199999994, 4.212244999999939], [111.93082700000002, 4.212203000000045], [111.93026399999997, 4.212203999999929], [111.930206, 4.212162000000035], [111.93026399999997, 4.2121179999999185], [111.93060100000014, 4.2121179999999185], [111.93065600000006, 4.212076000000025], [111.93060100000014, 4.212035000000014], [111.93026300000008, 4.212035000000014], [111.930206, 4.211992000000009], [111.93026300000008, 4.2119480000000635], [111.93082600000014, 4.211947000000009], [111.93088100000006, 4.211905999999999], [111.93082600000014, 4.211864000000048], [111.93048900000014, 4.211864999999989], [111.93043100000011, 4.211821999999984], [111.93048800000003, 4.211778999999979], [111.93060100000014, 4.211778999999979], [111.93065600000006, 4.211737000000028], [111.93060100000014, 4.211695000000134], [111.93048800000003, 4.211695000000134], [111.93043100000011, 4.211652000000129], [111.93048800000003, 4.211609000000124], [111.93082600000014, 4.2116080000000125], [111.93088100000006, 4.211567000000002], [111.93082600000014, 4.2115250000000515], [111.93065600000006, 4.2115250000000515], [111.930655, 4.211269000000016], [111.93082600000014, 4.211269000000016], [111.93088100000006, 4.211227000000122], [111.93082600000014, 4.211186999999995], [111.930655, 4.211186999999995], [111.930655, 4.210930000000076], [111.93082500000003, 4.210930000000076], [111.93087999999995, 4.210888000000125], [111.93082500000003, 4.210847000000115], [111.930655, 4.210847999999999], [111.930655, 4.210675999999978], [111.93082500000003, 4.210675999999978], [111.93087999999995, 4.210634000000084], [111.93082500000003, 4.210592000000133], [111.930655, 4.210593000000074], [111.93065400000012, 4.210423000000048], [111.93048700000014, 4.210424000000103], [111.93042900000012, 4.210380000000043], [111.93048700000014, 4.210337000000038], [111.93059899999997, 4.210337000000038], [111.93065400000012, 4.210295000000087], [111.93059899999997, 4.210252999999966], [111.93048700000014, 4.210254000000077], [111.93042900000012, 4.210211000000072], [111.930541, 4.210125999999946], [111.93048600000003, 4.210084000000052], [111.93037400000003, 4.210085000000106], [111.930316, 4.2100410000000466], [111.93037400000003, 4.209998000000041], [111.93071200000009, 4.20999699999993], [111.93076600000012, 4.209956000000091], [111.93071100000003, 4.209914000000026], [111.93037400000003, 4.2099150000000805], [111.930316, 4.209872000000075], [111.93037299999992, 4.20982900000007], [111.93065400000012, 4.209828000000016], [111.930653, 4.20965799999999], [111.93082399999997, 4.20965799999999], [111.93087900000006, 4.2096160000000395], [111.93082399999997, 4.209575000000029], [111.930653, 4.209575000000029], [111.930653, 4.2091930000000275], [111.93076500000006, 4.209108000000128], [111.930653, 4.209023000000002], [111.930653, 4.208854000000031], [111.93076500000006, 4.208769000000132], [111.93065200000012, 4.208684000000005], [111.93065200000012, 4.208515000000091], [111.93076500000006, 4.208430000000135], [111.93065200000012, 4.208345000000065], [111.93065100000001, 4.2072], [111.93104600000004, 4.20719900000006], [111.93110100000013, 4.207156999999995], [111.93104600000004, 4.207115999999985], [111.93070799999992, 4.207115999999985], [111.93065000000013, 4.20707299999998], [111.93110000000007, 4.2067330000000425], [111.93104499999993, 4.206692000000032], [111.9309330000001, 4.206776999999988], [111.93076300000007, 4.206776999999988], [111.93076300000007, 4.206650000000138], [111.93087500000007, 4.206564000000128], [111.93087500000007, 4.206479000000002], [111.93076199999996, 4.2063940000001026], [111.93076199999996, 4.206182000000126], [111.93093199999998, 4.206182000000126], [111.93098700000013, 4.206140000000005], [111.93093199999998, 4.206098000000111], [111.93076199999996, 4.206098999999995], [111.93076199999996, 4.205886000000135], [111.93087400000002, 4.205801000000065], [111.93076100000008, 4.205716000000109], [111.93076100000008, 4.205546999999967], [111.93087400000002, 4.205462000000068], [111.93081900000004, 4.205419999999947], [111.93064800000013, 4.205419999999947], [111.93064800000013, 4.205293000000097], [111.93076100000008, 4.205208000000027], [111.93076100000008, 4.205081000000007], [111.93053500000002, 4.205081000000007], [111.93053500000002, 4.204825000000142], [111.93070500000005, 4.204825000000142], [111.93075999999996, 4.20478300000002], [111.93070500000005, 4.20474200000001], [111.93025499999993, 4.20474200000001], [111.93019700000013, 4.204700000000059], [111.93025499999993, 4.204656], [111.9304800000001, 4.204656], [111.93053500000002, 4.20461499999999], [111.9304800000001, 4.204573000000039], [111.925187, 4.204579000000024], [111.92507400000005, 4.204494000000068], [111.92496099999994, 4.204580000000078], [111.92484900000011, 4.204580000000078], [111.924736, 4.2044950000000085], [111.924624, 4.204580000000078], [111.92451100000005, 4.204580000000078], [111.92439800000011, 4.2044950000000085], [111.92315900000006, 4.2044970000000035], [111.92304700000005, 4.2044120000000476], [111.92192099999994, 4.204412999999931], [111.92180800000006, 4.204328999999916], [111.92045600000006, 4.2043310000000815], [111.92034400000006, 4.204246000000012], [111.91899200000012, 4.204247000000066], [111.918879, 4.204163000000051], [111.91764100000006, 4.204163999999935], [111.91752800000012, 4.204079000000036], [111.91651400000006, 4.204079999999919], [111.916402, 4.203996000000075], [111.91493800000006, 4.20399800000007], [111.91482500000012, 4.203913], [111.91302300000007, 4.203914999999938], [111.91291000000012, 4.203830000000039], [111.91088300000007, 4.203833000000088], [111.91076999999996, 4.203749000000073], [111.90299900000002, 4.203758000000107], [111.90288700000002, 4.2036730000000375], [111.90277400000008, 4.203758000000107], [111.90266200000002, 4.203758000000107], [111.90254900000008, 4.2036730000000375], [111.90243599999997, 4.203758000000107], [111.90232400000014, 4.203674000000092], [111.90221100000002, 4.203674000000092], [111.90209900000002, 4.203759000000048], [111.90198600000008, 4.203674000000092], [111.90187300000014, 4.203674000000092], [111.90176100000008, 4.203759000000048], [111.90164799999997, 4.203674000000092], [111.89838200000014, 4.203678000000082], [111.89826900000003, 4.203762999999981], [111.89815700000014, 4.203678000000082], [111.89804400000003, 4.203678000000082], [111.89793200000003, 4.203764000000092], [111.89759400000008, 4.203764000000092], [111.89748099999997, 4.203679000000136], [111.89736800000009, 4.203764000000092], [111.89725600000003, 4.203679000000136], [111.89162500000003, 4.203686000000005], [111.89151199999992, 4.203771000000131], [111.89140000000009, 4.203771000000131], [111.89128699999998, 4.203686000000005], [111.89117400000003, 4.203771000000131], [111.87912499999999, 4.203785000000039], [111.87901200000005, 4.203869000000054], [111.86966500000011, 4.203880000000083], [111.869552, 4.203965000000039], [111.86797500000006, 4.203966999999977], [111.86786300000006, 4.204052000000104], [111.863921, 4.204056000000094], [111.863809, 4.204140999999993], [111.85175800000013, 4.204154000000017], [111.85164500000002, 4.2040700000000015], [111.85130700000013, 4.2040700000000015], [111.85119500000008, 4.204154000000017], [111.85108199999996, 4.204155000000128], [111.85096900000008, 4.204071000000056], [111.84950500000008, 4.2040719999999965], [111.84939300000002, 4.204156000000012], [111.84928000000008, 4.2040719999999965], [111.84916800000008, 4.204157000000066], [111.82664399999999, 4.204181000000119], [111.82653100000005, 4.204097000000104], [111.81966100000005, 4.2041039999999725], [111.81954900000005, 4.204019000000017], [111.81695800000006, 4.204022000000123], [111.81684600000006, 4.204107000000022], [111.81358, 4.204111000000012], [111.81346700000006, 4.204026000000113], [111.81155200000006, 4.204028000000051], [111.81144000000006, 4.204113000000007], [111.81053900000012, 4.204114000000061], [111.810426, 4.204028999999991], [111.78857699999998, 4.2040510000000495], [111.78846400000003, 4.203966000000094], [111.78835200000003, 4.204052000000104], [111.78823900000009, 4.204052000000104], [111.78812599999998, 4.203966999999977], [111.78801399999992, 4.203966999999977], [111.78790100000003, 4.204052000000104], [111.78778899999998, 4.203966999999977], [111.78395899999998, 4.203971000000138], [111.78384699999998, 4.2038870000001225], [111.78373400000004, 4.203971000000138], [111.7836210000001, 4.203971000000138], [111.78350900000004, 4.2038870000001225], [111.78339599999993, 4.203971000000138], [111.7832840000001, 4.203972000000078], [111.78317200000004, 4.203888000000063], [111.78305899999992, 4.203972000000078], [111.78294700000009, 4.203972000000078], [111.78283399999998, 4.203888000000063], [111.78272100000004, 4.203972000000078], [111.78260900000004, 4.203972000000078], [111.7824960000001, 4.203888000000063], [111.78238299999998, 4.203888000000063], [111.78227099999992, 4.203973000000133], [111.78215799999998, 4.2038890000001174], [111.78204599999998, 4.2038890000001174], [111.78193300000004, 4.203973000000133], [111.7818200000001, 4.2038890000001174], [111.7817080000001, 4.2038890000001174], [111.78159499999998, 4.203973000000133], [111.78148200000004, 4.2038890000001174], [111.78136999999998, 4.2038890000001174], [111.78125700000004, 4.203974000000073], [111.78114500000004, 4.203890000000001], [111.7802440000001, 4.203891000000112], [111.78013099999998, 4.203975000000128], [111.77990600000004, 4.203975000000128], [111.7797930000001, 4.203891000000112], [111.77923000000004, 4.203891999999996], [111.7791170000001, 4.203807000000097], [111.7790050000001, 4.203891999999996], [111.77889199999998, 4.203891999999996], [111.77877900000004, 4.203807000000097], [111.77866699999998, 4.203891999999996], [111.77855400000004, 4.203891999999996], [111.77844099999993, 4.203807000000097], [111.7783290000001, 4.203807000000097], [111.77821599999999, 4.203893000000107], [111.77810399999993, 4.203807999999981], [111.77675199999999, 4.203809000000092], [111.77663999999999, 4.203893999999991], [111.77652700000004, 4.203893999999991], [111.7764140000001, 4.203809000000092], [111.77179699999999, 4.203814000000136], [111.77168400000005, 4.20372900000001], [111.77157099999994, 4.203814000000136], [111.7714590000001, 4.203814000000136], [111.771346, 4.20372900000001], [111.77123300000005, 4.203814000000136], [111.76503900000006, 4.203821000000005], [111.76492600000012, 4.203736000000049], [111.76481400000006, 4.203821000000005], [111.76436300000006, 4.203821000000005], [111.76425100000006, 4.203736000000049], [111.76413800000012, 4.203821000000005], [111.764025, 4.203822000000059], [111.76391299999995, 4.20373699999999], [111.7638, 4.203822000000059], [111.763688, 4.203822000000059], [111.76357500000006, 4.20373699999999], [111.76346200000012, 4.203822000000059], [111.76335000000012, 4.203822000000059], [111.763237, 4.20373699999999], [111.76312400000006, 4.203822000000059], [111.763012, 4.203823], [111.76289900000006, 4.203738000000044], [111.76278700000006, 4.203823], [111.76267400000012, 4.203823], [111.762561, 4.203738000000044], [111.76244899999995, 4.203823], [111.76233600000006, 4.203823], [111.76222300000012, 4.203738000000044], [111.76211100000006, 4.203823], [111.76199799999995, 4.203824000000054], [111.76188600000012, 4.203738999999985], [111.761773, 4.203824000000054], [111.76166000000006, 4.203824000000054], [111.761548, 4.203738999999985], [111.76143500000012, 4.203824000000054], [111.760985, 4.203824999999995], [111.76087200000006, 4.203740000000039], [111.76075900000012, 4.203824999999995], [111.76064700000006, 4.203824999999995], [111.76053399999995, 4.203740000000039], [111.76042100000006, 4.203824999999995], [111.75276300000002, 4.203833000000088], [111.75265000000013, 4.203748000000019], [111.74116300000003, 4.203759000000048], [111.74105000000009, 4.203674000000092], [111.74093699999997, 4.203759000000048], [111.74082499999992, 4.203759000000048], [111.74071200000003, 4.203674000000092], [111.74059900000009, 4.203674000000092], [111.74048700000003, 4.203759000000048], [111.74037399999992, 4.203674000000092], [111.74026099999998, 4.203674000000092], [111.74014899999997, 4.203760000000102], [111.74003600000003, 4.203674999999976], [111.73722099999998, 4.203676999999971], [111.73710800000003, 4.203762999999981], [111.73699499999992, 4.203678000000082], [111.73688300000009, 4.203762999999981], [111.73440500000004, 4.203764999999976], [111.73429199999993, 4.203680000000077], [111.7341800000001, 4.203764999999976], [111.73406699999998, 4.203764999999976], [111.73395499999992, 4.203680000000077], [111.73384300000009, 4.203766000000087], [111.73372999999998, 4.203766000000087], [111.73361700000004, 4.203681000000131], [111.73350500000004, 4.203766000000087], [111.7333920000001, 4.203766000000087], [111.73328000000004, 4.203681000000131], [111.71559699999995, 4.203697999999974], [111.71548500000011, 4.203783000000044], [111.715372, 4.203697999999974], [111.71525900000006, 4.203697999999974], [111.71514700000006, 4.203783000000044], [111.71503400000012, 4.203697999999974], [111.71435800000012, 4.203699000000029], [111.71424600000012, 4.203783999999985], [111.714133, 4.203783999999985], [111.71402100000012, 4.203699000000029], [111.713908, 4.203783999999985], [111.71379500000006, 4.203783999999985], [111.71368300000006, 4.203699000000029], [111.71357000000012, 4.203699000000029], [111.713457, 4.203785000000039], [111.71334499999995, 4.20370000000014], [111.71323200000006, 4.20370000000014], [111.71312, 4.203785000000039], [111.71300700000006, 4.20370000000014], [111.71289399999995, 4.20370000000014], [111.71278200000012, 4.203785000000039], [111.712669, 4.20370000000014], [111.711881, 4.203701000000024], [111.71176800000006, 4.203785999999923], [111.71165500000012, 4.203701000000024], [111.71154300000006, 4.203701000000024], [111.71142999999995, 4.203785999999923], [111.71131800000012, 4.203701000000024], [111.71086700000012, 4.203702000000078], [111.71075400000001, 4.203787000000034], [111.71064199999995, 4.203702000000078], [111.71052900000001, 4.203702000000078], [111.710417, 4.203787000000034], [111.71030400000006, 4.203702000000078], [111.69217100000003, 4.203719000000092], [111.69205799999992, 4.203635000000077], [111.69194600000009, 4.203719000000092], [111.69183299999997, 4.203719000000092], [111.69172000000003, 4.203635000000077], [111.69160800000003, 4.203635000000077], [111.69149500000009, 4.203719000000092], [111.69138300000003, 4.203635000000077], [111.69126999999992, 4.203635000000077], [111.69115699999998, 4.203719999999976], [111.69104499999997, 4.203636000000131], [111.69093200000003, 4.203719999999976], [111.69081999999997, 4.203719999999976], [111.69070700000009, 4.203636000000131], [111.69059399999998, 4.203719999999976], [111.69048200000009, 4.203719999999976], [111.69036899999998, 4.203636000000131], [111.69025600000003, 4.203719999999976], [111.69014400000003, 4.203721000000087], [111.690088, 4.203679000000136], [111.69003100000009, 4.203636000000131], [111.68991799999998, 4.203721000000087], [111.67223700000005, 4.203736000000049], [111.67212400000011, 4.203821000000005], [111.66243800000001, 4.203830000000039], [111.66232599999995, 4.203745000000083], [111.66221300000007, 4.203830000000039], [111.662101, 4.203830000000039], [111.66198800000006, 4.203745000000083], [111.66187499999995, 4.203830000000039], [111.66176300000012, 4.203830000000039], [111.66165000000001, 4.203745000000083], [111.66153700000007, 4.203830000000039], [111.66142500000001, 4.203830000000039], [111.66131200000012, 4.203746000000024], [111.66120000000006, 4.203746000000024], [111.66108700000012, 4.203830999999923], [111.66097400000001, 4.203830999999923], [111.66086200000001, 4.203746000000024], [111.66074900000007, 4.203746000000024], [111.66063600000012, 4.203830999999923], [111.66052400000007, 4.203746000000024], [111.65984800000012, 4.203747000000078], [111.65973500000001, 4.203832000000034], [111.65962299999995, 4.203747000000078], [111.65951000000001, 4.203832000000034], [111.65939800000001, 4.203832000000034], [111.65928500000007, 4.203747000000078], [111.65917200000013, 4.203832000000034], [111.65906000000012, 4.203833000000088], [111.65894700000001, 4.203748000000019], [111.65883400000007, 4.203833000000088], [111.65860900000007, 4.203833000000088], [111.65849599999996, 4.203748000000019], [111.65838400000013, 4.203833000000088], [111.65511800000007, 4.203836000000024], [111.65500499999996, 4.2039210000000935], [111.65489200000002, 4.203836000000024], [111.65478000000002, 4.203836000000024], [111.65466700000007, 4.2039210000000935], [111.65455500000002, 4.203836000000024], [111.65444200000013, 4.2039210000000935], [111.64768400000014, 4.203927000000078], [111.64757200000014, 4.204011999999977], [111.64745900000003, 4.203927000000078], [111.64734600000008, 4.203927000000078], [111.64723400000003, 4.204011999999977], [111.64712100000008, 4.203928000000133], [111.64700900000008, 4.203928000000133], [111.64689600000014, 4.204013000000089], [111.64678300000003, 4.203928000000133], [111.64667099999997, 4.204013000000089], [111.64655800000008, 4.204013000000089], [111.64644500000014, 4.203928000000133], [111.64633300000008, 4.204013000000089], [111.64621999999997, 4.204013000000089], [111.64610800000014, 4.203928000000133], [111.64599500000003, 4.204013999999972], [111.64520700000003, 4.204013999999972], [111.64509400000009, 4.203929000000073], [111.64498099999997, 4.204013999999972], [111.6345080000001, 4.2040230000000065], [111.63439499999998, 4.204107000000022], [111.63428299999998, 4.2040230000000065], [111.63417000000004, 4.2040230000000065], [111.6340570000001, 4.204107000000022], [111.63394500000004, 4.2040230000000065], [111.63383199999993, 4.204108000000133], [111.62572300000011, 4.204114000000061], [111.62561, 4.204199000000017], [111.61997900000006, 4.204204000000061], [111.61986600000012, 4.204289000000017], [111.61975400000006, 4.204204000000061], [111.61964099999994, 4.204289000000017], [111.61952900000011, 4.204289000000017], [111.619416, 4.204204000000061], [111.61930300000006, 4.204289000000017], [111.61457300000001, 4.20429299999995], [111.61446000000007, 4.204377000000022], [111.61434800000006, 4.20429299999995], [111.61423500000012, 4.2043780000000766], [111.61412200000001, 4.2043780000000766], [111.61401000000001, 4.204294000000061], [111.61389700000007, 4.2043780000000766], [111.61378500000001, 4.2043780000000766], [111.61367200000007, 4.204294000000061], [111.61355899999995, 4.2043780000000766], [111.61344700000012, 4.2043780000000766], [111.61333400000001, 4.204294000000061], [111.61322100000007, 4.2043780000000766], [111.61310900000007, 4.2043780000000766], [111.61299600000012, 4.204294000000061], [111.61288400000007, 4.20437899999996], [111.61277099999995, 4.20437899999996], [111.61265800000001, 4.204294999999945], [111.61254600000001, 4.204294999999945], [111.61243300000007, 4.20437899999996], [111.61232000000012, 4.204294999999945], [111.61220800000012, 4.204294999999945], [111.61209500000001, 4.20437899999996], [111.61198200000007, 4.204294999999945], [111.61187000000001, 4.20437899999996], [111.61175700000007, 4.2043800000000715], [111.6117010000001, 4.20433799999995], [111.61164500000007, 4.204294999999945], [111.61153200000012, 4.2043800000000715], [111.60781500000007, 4.204383000000121], [111.60770300000001, 4.204468000000077], [111.60759000000007, 4.204383000000121], [111.60747699999996, 4.204383000000121], [111.60736500000013, 4.204468000000077], [111.60725200000002, 4.204383000000121], [111.60714000000002, 4.204468000000077], [111.60702700000007, 4.204468000000077], [111.60691400000013, 4.204383000000121], [111.60680200000007, 4.204468000000077], [111.60432400000008, 4.204470000000072], [111.60421100000013, 4.204385000000116], [111.60409900000008, 4.204471000000126], [111.60398599999996, 4.204471000000126], [111.60387300000002, 4.204386000000056], [111.60376100000002, 4.204471000000126], [111.60364800000008, 4.204471000000126], [111.60353500000014, 4.204386000000056], [111.60342300000013, 4.204471000000126], [111.60263400000002, 4.204472000000067], [111.60252199999996, 4.204387000000111], [111.60240900000008, 4.204472000000067], [111.60229700000002, 4.204472000000067], [111.60218400000008, 4.204387000000111], [111.60207099999997, 4.204472000000067], [111.60195900000014, 4.204472000000067], [111.60184600000002, 4.204387000000111], [111.60173300000008, 4.204472000000067], [111.60162100000002, 4.204472000000067], [111.60156500000005, 4.204430000000116], [111.60150800000014, 4.2043879999999945], [111.60139500000002, 4.2043879999999945], [111.60128300000014, 4.204473000000121], [111.60117000000002, 4.2043879999999945], [111.60105800000002, 4.2043879999999945], [111.60094500000008, 4.204473000000121], [111.60083200000014, 4.2043879999999945], [111.60072000000008, 4.2043879999999945], [111.60060699999997, 4.204473000000121], [111.60049400000008, 4.2043879999999945], [111.60038200000002, 4.2043879999999945], [111.60026900000008, 4.204474000000005], [111.60015599999997, 4.204389000000106], [111.59970600000003, 4.204389000000106], [111.59959300000014, 4.204474000000005], [111.59948100000008, 4.204389000000106], [111.59936800000014, 4.204389000000106], [111.59925600000014, 4.204474000000005], [111.59914300000003, 4.204389000000106], [111.59903000000008, 4.204389000000106], [111.59891800000003, 4.204475000000116], [111.59880500000008, 4.204389999999989], [111.59869199999997, 4.204389999999989], [111.59858000000014, 4.204475000000116], [111.59846700000003, 4.204389999999989], [111.59835400000009, 4.204475000000116], [111.59824200000008, 4.204475000000116], [111.59812899999997, 4.204389999999989], [111.59801700000008, 4.204475000000116], [111.59790399999997, 4.204475000000116], [111.59779100000003, 4.204389999999989], [111.59767900000003, 4.204389999999989], [111.59756600000009, 4.204476], [111.59745299999997, 4.204391000000101], [111.59734099999997, 4.204476], [111.5895690000001, 4.2044819999999845], [111.5894570000001, 4.204567000000111], [111.58934399999998, 4.2044819999999845], [111.58923199999992, 4.2044819999999845], [111.58911899999998, 4.204567000000111], [111.58900600000004, 4.2044819999999845], [111.58889400000004, 4.204567000000111], [111.5887810000001, 4.204567000000111], [111.58866799999998, 4.2044819999999845], [111.58855599999998, 4.204567000000111], [111.58850000000012, 4.20452499999999], [111.58844300000004, 4.204483000000039], [111.58833099999998, 4.204567999999995], [111.58821800000004, 4.204567999999995], [111.58810499999993, 4.204483000000039], [111.5879930000001, 4.204567999999995], [111.58787999999998, 4.204567999999995], [111.58776700000004, 4.204483000000039], [111.58765500000004, 4.204567999999995], [111.5875420000001, 4.204567999999995], [111.58742899999999, 4.204483000000039], [111.58731699999993, 4.204567999999995], [111.5867540000001, 4.204569000000049], [111.58664099999999, 4.2044839999999795], [111.5865290000001, 4.204569000000049], [111.58540300000004, 4.20456999999999], [111.5852900000001, 4.204485000000034], [111.58517800000004, 4.20456999999999], [111.58506499999993, 4.20456999999999], [111.5849530000001, 4.204485000000034], [111.58483999999999, 4.20456999999999], [111.58472700000004, 4.20456999999999], [111.58461500000004, 4.204485000000034], [111.5845020000001, 4.204571000000044], [111.57712500000008, 4.204575999999918], [111.56974800000006, 4.204581000000019], [111.56963500000012, 4.204667000000029], [111.569522, 4.204667000000029], [111.56940999999995, 4.204582000000073], [111.569297, 4.204667000000029], [111.569185, 4.204667000000029], [111.56907200000006, 4.204582000000073], [111.56895900000012, 4.204667000000029], [111.56085000000013, 4.204672999999957], [111.56073700000002, 4.204756999999972], [111.56062499999996, 4.204672999999957], [111.56051200000002, 4.204756999999972], [111.56040000000002, 4.204756999999972], [111.56028700000007, 4.204672999999957], [111.56017400000013, 4.2047580000000835], [111.56006200000013, 4.2047580000000835], [111.55994900000002, 4.204674000000068], [111.55983600000008, 4.2047580000000835], [111.55972400000002, 4.2047580000000835], [111.55961100000007, 4.204674000000068], [111.55949900000007, 4.2047580000000835], [111.55938600000013, 4.2047580000000835], [111.55927300000002, 4.204674000000068], [111.55916100000002, 4.2047580000000835], [111.55904800000008, 4.2047580000000835], [111.55893500000013, 4.204674000000068], [111.55882300000007, 4.204758999999967], [111.54992499999997, 4.204765000000123], [111.54981200000003, 4.204681000000107], [111.54970000000003, 4.204765000000123], [111.54958700000009, 4.204765000000123], [111.54947399999998, 4.204681000000107], [111.54936199999997, 4.204765000000123], [111.54924900000003, 4.204765000000123], [111.54913699999997, 4.204681000000107], [111.54902400000003, 4.204681000000107], [111.54891099999992, 4.204766000000006], [111.54879900000009, 4.204681999999991], [111.54868599999998, 4.204681999999991], [111.54857300000003, 4.204766000000006], [111.54846100000003, 4.204681999999991], [111.54834800000009, 4.204766000000006], [111.54823600000003, 4.204766000000006], [111.54812299999992, 4.204681999999991], [111.54800999999998, 4.204681999999991], [111.54789799999998, 4.204766000000006], [111.54778500000003, 4.204681999999991], [111.54767200000009, 4.204681999999991], [111.54756000000009, 4.204767000000118], [111.54744699999998, 4.204683000000102], [111.54733400000003, 4.204683000000102], [111.54722199999998, 4.204767000000118], [111.54710900000003, 4.204683000000102], [111.54677099999998, 4.204683000000102], [111.54665899999992, 4.204767000000118], [111.54620799999992, 4.204768000000001], [111.54616800000002, 4.2047370000001365], [111.54609600000009, 4.204683000000102], [111.54598299999998, 4.204768000000001], [111.54587000000004, 4.204768000000001], [111.54575799999998, 4.204683999999986], [111.54564500000009, 4.204768000000001], [111.54553199999998, 4.204768000000001], [111.54542000000009, 4.204683999999986], [111.54530699999998, 4.204683999999986], [111.54519499999998, 4.204768000000001], [111.54508200000004, 4.204683999999986], [111.5449690000001, 4.204683999999986], [111.54485700000004, 4.204768000000001], [111.54451899999998, 4.2047690000001126], [111.54440600000004, 4.204685000000097], [111.54429299999993, 4.204685000000097], [111.5441810000001, 4.2047690000001126], [111.54406799999998, 4.204685000000097], [111.531792, 4.20469300000002], [111.53168000000011, 4.204777999999976], [111.531567, 4.204694000000131], [111.531455, 4.204694000000131], [111.53134200000005, 4.204777999999976], [111.53122900000011, 4.204694000000131], [111.53111700000005, 4.204694000000131], [111.53100399999994, 4.204777999999976], [111.53089100000005, 4.204694000000131], [111.530779, 4.204777999999976], [111.52593600000006, 4.204781000000025], [111.52582300000012, 4.20469700000001], [111.52571, 4.204782000000137], [111.52559799999995, 4.204782000000137], [111.525485, 4.204698000000064], [111.525373, 4.204782000000137], [111.52526000000006, 4.204782000000137], [111.52514700000012, 4.204698000000064], [111.52503500000012, 4.204782000000137], [111.524922, 4.204782000000137], [111.52480900000006, 4.204698000000064], [111.524697, 4.204782000000137], [111.52357, 4.20478300000002], [111.523458, 4.204699000000005], [111.52334500000006, 4.20478300000002], [111.49822899999992, 4.2047999999999774], [111.49811599999998, 4.204715999999962], [111.49800300000004, 4.2047999999999774], [111.49789100000004, 4.2047999999999774], [111.4977780000001, 4.204715999999962], [111.49766499999998, 4.2047999999999774], [111.48989400000005, 4.2048050000000785], [111.48978100000011, 4.204721000000063], [111.4896690000001, 4.204721000000063], [111.489556, 4.2048050000000785], [111.48944300000005, 4.204721000000063], [111.46511600000002, 4.204736000000025], [111.46500300000008, 4.204820000000041], [111.46061099999991, 4.204822999999976], [111.46049800000003, 4.204908000000046], [111.45914699999997, 4.2049089999999865], [111.45903400000003, 4.204994000000056], [111.45801999999998, 4.204994999999997], [111.45790799999992, 4.205080000000066], [111.45678099999992, 4.205080000000066], [111.45666900000009, 4.205164000000082], [111.45531699999998, 4.205165000000022], [111.45520499999992, 4.205250000000092], [111.45306499999998, 4.205252000000087], [111.45295200000004, 4.205337000000043], [111.44912299999993, 4.205339000000038], [111.44900999999999, 4.205424000000107], [111.4451810000001, 4.205426000000102], [111.44506799999999, 4.2055100000001175], [111.43876100000006, 4.205514000000107], [111.43870600000008, 4.205556000000001], [111.43876100000006, 4.205597000000068], [111.43909900000011, 4.205597000000068], [111.43915600000003, 4.2056400000000735], [111.43909900000011, 4.205684000000133], [111.43876100000006, 4.205684000000133], [111.43870600000008, 4.205726000000084], [111.43876100000006, 4.205767000000094], [111.43909900000011, 4.205767000000094], [111.43915600000003, 4.205810000000099], [111.43909900000011, 4.205853000000104], [111.43853600000006, 4.205853000000104], [111.43848100000014, 4.205894999999998], [111.43853600000006, 4.2059370000001195], [111.43876100000006, 4.205936000000008], [111.43881900000002, 4.205980000000125], [111.43870600000008, 4.206065000000024], [111.43881900000002, 4.206149000000039], [111.43870600000008, 4.206233999999995], [111.43870700000002, 4.20750600000008], [111.43859400000008, 4.207590999999979], [111.43870700000002, 4.207676000000106], [111.43870800000008, 4.209541999999942], [111.43859499999996, 4.209627000000069], [111.43870800000008, 4.209711000000084], [111.43870800000008, 4.2098810000001095], [111.43859499999996, 4.209966000000065], [111.43865000000011, 4.2100070000000755], [111.43887599999994, 4.2100070000000755], [111.43893300000008, 4.210050000000081], [111.43887599999994, 4.210093000000086], [111.43876300000005, 4.210093000000086], [111.43870800000008, 4.21013499999998], [111.43876300000005, 4.210177000000101], [111.43887599999994, 4.210177000000101], [111.43893400000013, 4.210220000000106], [111.43887599999994, 4.210263000000111], [111.43870800000008, 4.210263000000111], [111.43870900000002, 4.211407000000065], [111.4387640000001, 4.211449000000016], [111.43887599999994, 4.211363000000006], [111.43893400000013, 4.211407000000065], [111.43893400000013, 4.211492000000021], [111.4387640000001, 4.211619999999925], [111.438651, 4.211535000000026], [111.43853899999999, 4.2115360000000805], [111.43848400000002, 4.21157699999992], [111.43853899999999, 4.2116190000000415], [111.43870900000002, 4.2116190000000415], [111.43870900000002, 4.211788000000013], [111.43887700000005, 4.211788000000013], [111.43893400000013, 4.211831000000018], [111.4386520000001, 4.2120440000000485], [111.43859499999996, 4.212000000000103], [111.43859499999996, 4.211875000000077], [111.43842600000005, 4.211875000000077], [111.43837100000007, 4.2119160000000875], [111.4387640000001, 4.212212000000079], [111.43916000000002, 4.212212000000079], [111.43916000000002, 4.213188000000002], [111.43898999999999, 4.213316000000134], [111.43887799999993, 4.213316000000134], [111.43876499999999, 4.213232000000119], [111.43871000000007, 4.213272000000018], [111.43882300000001, 4.213356999999974], [111.43882300000001, 4.213442000000043], [111.43893500000007, 4.213526999999999], [111.43893500000007, 4.213655000000074], [111.43876499999999, 4.213655000000074], [111.4386520000001, 4.213571000000059], [111.43859800000007, 4.213612000000069], [111.43871000000007, 4.213697000000025], [111.43871000000007, 4.213781999999924], [111.43893600000013, 4.2139510000000655], [111.43887799999993, 4.213994000000071], [111.43871000000007, 4.213994000000071], [111.43871100000001, 4.214926999999989], [111.43842800000004, 4.214926999999989], [111.43837300000007, 4.21496900000011], [111.43842800000004, 4.21501000000012], [111.43865299999999, 4.21501000000012], [111.43871100000001, 4.215054000000009], [111.43865299999999, 4.215097000000014], [111.43854099999993, 4.215097000000014], [111.43848600000001, 4.215139000000136], [111.43854099999993, 4.215179999999975], [111.43865299999999, 4.215179999999975], [111.43871100000001, 4.21522299999998], [111.43865299999999, 4.2152659999999855], [111.43842800000004, 4.2152659999999855], [111.43837300000007, 4.215308000000107], [111.43842800000004, 4.215350000000001], [111.43865299999999, 4.215349000000117], [111.43871100000001, 4.215393000000006], [111.43865299999999, 4.215436000000011], [111.43854099999993, 4.215436000000011], [111.43842800000004, 4.2155210000001375], [111.43826100000007, 4.2155210000001375], [111.43826100000007, 4.215774000000124], [111.43842800000004, 4.215774000000124], [111.43854099999993, 4.215859000000023], [111.43871100000001, 4.215859000000023], [111.43871200000007, 4.2167080000000965], [111.43854200000004, 4.2167080000000965], [111.43848700000012, 4.216750000000047], [111.43854200000004, 4.216792000000112], [111.43871200000007, 4.2167910000000575], [111.43871200000007, 4.2171310000001085], [111.43904999999995, 4.217130000000054], [111.43904999999995, 4.217301000000134], [111.43876699999998, 4.217302000000075], [111.43871200000007, 4.217343000000085], [111.43876699999998, 4.217384999999979], [111.43916300000006, 4.217384999999979], [111.43916300000006, 4.218573000000049], [111.4387680000001, 4.218573999999933], [111.43871299999995, 4.218615], [111.4387680000001, 4.218657000000064], [111.43905100000006, 4.218657000000064], [111.43905100000006, 4.218784000000085], [111.43899300000004, 4.21882800000003], [111.43888100000004, 4.218744000000015], [111.4387680000001, 4.218744000000015], [111.43871299999995, 4.218784000000085], [111.4387680000001, 4.2188260000000355], [111.43888100000004, 4.2188260000000355], [111.43893800000012, 4.218869000000041], [111.4387680000001, 4.218998000000056], [111.43865499999998, 4.2189130000001], [111.43854299999992, 4.2189130000001], [111.438488, 4.218955000000051], [111.43865600000004, 4.21908099999996], [111.43888100000004, 4.21908099999996], [111.438939, 4.219123999999965], [111.43888100000004, 4.21916699999997], [111.4387680000001, 4.21916699999997], [111.43871299999995, 4.219209000000092], [111.4387680000001, 4.219250000000102], [111.43888100000004, 4.219250000000102], [111.438939, 4.219294000000048], [111.43888100000004, 4.219337000000053], [111.43871299999995, 4.219337000000053], [111.43871400000006, 4.220522000000017], [111.43888200000009, 4.220522000000017], [111.43893800000012, 4.220566000000133], [111.43888200000009, 4.220609000000138], [111.43854400000004, 4.220609000000138], [111.43848900000012, 4.220651000000032], [111.43854400000004, 4.220692000000042], [111.43888200000009, 4.220692000000042], [111.438939, 4.220735000000047], [111.43888200000009, 4.2207780000000525], [111.43876899999998, 4.2207780000000525], [111.43871400000006, 4.220820000000003], [111.43876899999998, 4.2208610000000135], [111.43899399999998, 4.2208610000000135], [111.43905199999995, 4.220905000000073], [111.43899399999998, 4.220948000000078], [111.43876899999998, 4.220948000000078], [111.43871400000006, 4.220990000000029], [111.43876899999998, 4.221031999999923], [111.43899500000003, 4.221031000000039], [111.43905199999995, 4.221074000000044], [111.43899500000003, 4.221117000000049], [111.43876899999998, 4.221117000000049], [111.43871400000006, 4.221158999999943], [111.43876899999998, 4.221201000000065], [111.43905199999995, 4.221201000000065], [111.43905199999995, 4.221329000000026], [111.43916500000006, 4.221413000000041], [111.43916500000006, 4.2214980000001106], [111.43905300000006, 4.2215830000000665], [111.43916500000006, 4.221667999999966], [111.439166, 4.2227280000001315], [111.43877000000009, 4.222729000000015], [111.43871499999995, 4.2227700000000254], [111.43882800000006, 4.222854999999981], [111.43871499999995, 4.222940000000051], [111.43882800000006, 4.223024000000066], [111.43882800000006, 4.223153000000082], [111.43854499999992, 4.223153000000082], [111.43849, 4.2231950000000325], [111.43854499999992, 4.223236000000043], [111.43877099999997, 4.223236000000043], [111.438827, 4.2232799999999315], [111.43877099999997, 4.223322000000053], [111.43865800000003, 4.223322000000053], [111.43860300000011, 4.223364000000004], [111.43871600000006, 4.223449000000073], [111.43871600000006, 4.224636000000089], [111.438829, 4.224720999999988], [111.43877099999997, 4.224763999999993], [111.43865899999997, 4.224763999999993], [111.438604, 4.224806000000115], [111.43865899999997, 4.224847000000125], [111.43877099999997, 4.224847000000125], [111.438829, 4.224891000000014], [111.43871699999994, 4.224975000000029], [111.438829, 4.225059999999985], [111.43871699999994, 4.2251450000000546], [111.43871800000005, 4.227730000000065], [111.43905600000011, 4.227730000000065], [111.43905600000011, 4.228411000000108], [111.43877300000014, 4.228411000000108], [111.43871800000005, 4.2284519999999475], [111.43877300000014, 4.228494000000069], [111.43899900000002, 4.228494000000069], [111.43905600000011, 4.228535999999963], [111.43899900000002, 4.228580000000079], [111.43877400000002, 4.228580000000079], [111.4387190000001, 4.228621999999973], [111.43877400000002, 4.22866300000004], [111.43899900000002, 4.22866300000004], [111.43905699999999, 4.228706000000045], [111.43899900000002, 4.228750000000105], [111.43854800000003, 4.228750000000105], [111.43838100000005, 4.228876000000071], [111.43843600000014, 4.228918000000135], [111.43854800000003, 4.228833000000066], [111.43866100000014, 4.228833000000066], [111.4387190000001, 4.228876000000071], [111.438606, 4.22896100000014], [111.4387190000001, 4.229046000000096], [111.43872000000005, 4.230318000000011], [111.43883200000005, 4.230403000000081], [111.43877500000013, 4.2304450000000315], [111.43866200000002, 4.2304450000000315], [111.4386070000001, 4.2304869999999255], [111.43866200000002, 4.230529000000047], [111.43888699999997, 4.230527999999936], [111.43894499999999, 4.230572000000052], [111.43883200000005, 4.230656999999951], [111.43894499999999, 4.2307420000000775], [111.43888699999997, 4.230784000000028], [111.43877500000013, 4.230785000000083], [111.43872000000005, 4.230826000000093], [111.43877500000013, 4.230868000000044], [111.43888699999997, 4.230868000000044], [111.43894499999999, 4.230911000000049], [111.43883299999993, 4.230996000000118], [111.43894499999999, 4.231081000000074], [111.43894499999999, 4.231547999999975], [111.43866300000008, 4.231547999999975], [111.43860799999999, 4.2315900000000966], [111.43866300000008, 4.231631000000107], [111.43888800000008, 4.231631000000107], [111.43894600000004, 4.231674999999996], [111.43883299999993, 4.231760000000122], [111.43894600000004, 4.231844000000137], [111.43894600000004, 4.2319290000000365], [111.43888800000008, 4.231972000000042], [111.43877500000013, 4.231886999999972], [111.43872000000005, 4.2319290000000365], [111.43883299999993, 4.232013999999992], [111.4387210000001, 4.232098000000008], [111.43877600000002, 4.232140000000129], [111.43894600000004, 4.232140000000129], [111.43894600000004, 4.232268000000033], [111.43888800000008, 4.232311999999979], [111.43877600000002, 4.232227000000023], [111.4387210000001, 4.232268000000033], [111.4387210000001, 4.233455000000049], [111.43877600000002, 4.2334970000001135], [111.43883200000005, 4.233455000000049], [111.43883200000005, 4.233370999999977], [111.43888899999996, 4.233327000000088], [111.43894699999998, 4.233370999999977], [111.43894699999998, 4.233583000000124], [111.43855100000007, 4.233584000000064], [111.43849599999999, 4.233625000000075], [111.43855100000007, 4.233667000000139], [111.43888899999996, 4.233667000000139], [111.43894699999998, 4.23370900000009], [111.43888899999996, 4.233752999999979], [111.43866400000002, 4.233752999999979], [111.4386090000001, 4.233793999999989], [111.43866400000002, 4.23383600000011], [111.43877600000002, 4.23383600000011], [111.43883400000004, 4.233879000000115], [111.43872199999998, 4.2339640000000145], [111.43877700000013, 4.234006000000136], [111.43888899999996, 4.234006000000136], [111.43894699999998, 4.234048000000087], [111.43888899999996, 4.2340919999999755], [111.43866400000002, 4.2340919999999755], [111.4386090000001, 4.234134000000097], [111.43866400000002, 4.234175000000107], [111.43900200000007, 4.234175000000107], [111.4390600000001, 4.234218000000112], [111.43900200000007, 4.234262000000001], [111.43888899999996, 4.234262000000001], [111.43883400000004, 4.234304000000122], [111.43888899999996, 4.234345000000133], [111.4390600000001, 4.234345000000133], [111.4390600000001, 4.234473000000037], [111.43917199999993, 4.234557999999993], [111.43911500000002, 4.234600999999998], [111.43889000000007, 4.234600999999998], [111.43883499999993, 4.234643000000062], [111.43889000000007, 4.234684000000129], [111.43911500000002, 4.234684000000129], [111.43917300000004, 4.2347270000001345], [111.43911500000002, 4.23477000000014], [111.43900200000007, 4.23477000000014], [111.43894699999998, 4.2348120000000335], [111.43900200000007, 4.234853999999984], [111.43911500000002, 4.234853000000044], [111.43917300000004, 4.2348969999999895], [111.43911500000002, 4.234939999999995], [111.43889000000007, 4.234939999999995], [111.43883499999993, 4.234982000000059], [111.43889000000007, 4.23502400000001], [111.43922800000013, 4.235023000000069], [111.43933999999996, 4.235108000000025], [111.43979100000001, 4.2351070000000846], [111.43990400000013, 4.2351920000000405], [111.44024200000001, 4.2351920000000405], [111.44035400000001, 4.23527699999994], [111.44080500000007, 4.23527699999994], [111.44091700000007, 4.235361000000012], [111.44125499999996, 4.235361000000012], [111.44136800000007, 4.235446000000081], [111.44170600000001, 4.235445000000027], [111.44181900000012, 4.235530000000097], [111.44215700000001, 4.235530000000097], [111.44226900000001, 4.2356150000000525], [111.44272000000007, 4.2356150000000525], [111.44283200000007, 4.235699000000068], [111.44316999999995, 4.235699000000068], [111.44328300000006, 4.235783999999967], [111.44362100000001, 4.235783999999967], [111.44373400000012, 4.235869000000093], [111.444184, 4.235868000000039], [111.44429699999995, 4.235953000000109], [111.44463500000006, 4.235953000000109], [111.44474700000006, 4.236037000000124], [111.44508499999995, 4.236037000000124], [111.44519800000006, 4.23612200000008], [111.445536, 4.23612200000008], [111.44564900000012, 4.236206999999979], [111.446099, 4.236206000000095], [111.44621199999995, 4.236290999999994], [111.44655000000006, 4.236290999999994], [111.44666200000006, 4.236375000000066], [111.44699999999995, 4.236375000000066], [111.44705700000009, 4.236419000000126], [111.44699999999995, 4.236462000000131], [111.43866500000007, 4.236467000000005], [111.43860999999998, 4.236508000000015], [111.43866500000007, 4.236550000000136], [111.43889100000013, 4.236550000000136], [111.43894800000004, 4.236593000000141], [111.43889100000013, 4.236635999999976], [111.43877800000001, 4.236635999999976], [111.4387230000001, 4.236676999999986], [111.43877800000001, 4.236719000000107], [111.43889100000013, 4.236719000000107], [111.43894800000004, 4.2367620000001125], [111.43889100000013, 4.236806000000001], [111.43855300000007, 4.236806000000001], [111.43849799999992, 4.236848000000123], [111.43855300000007, 4.236889000000133], [111.43877800000001, 4.236889000000133], [111.43883499999993, 4.236933000000022], [111.4387230000001, 4.237017000000037], [111.43883600000004, 4.237101999999993], [111.4387230000001, 4.237187000000063], [111.43872399999998, 4.238415000000089], [111.43889200000007, 4.238415000000089], [111.43894899999998, 4.2384589999999776], [111.43889200000007, 4.238501999999983], [111.43855399999995, 4.238501999999983], [111.43849900000004, 4.238544000000104], [111.43855399999995, 4.238585000000114], [111.43889200000007, 4.238585000000114], [111.43894899999998, 4.238628000000119], [111.43889200000007, 4.238671000000124], [111.43877900000012, 4.238671000000124], [111.43872399999998, 4.238713000000018], [111.43877900000012, 4.23875500000014], [111.43883600000004, 4.23875500000014], [111.43884300000008, 4.23875500000014], [111.43884700000007, 4.238754000000085], [111.43889200000007, 4.238754000000085], [111.43895000000003, 4.238797999999974], [111.43889200000007, 4.238840999999979], [111.43877900000012, 4.238840999999979], [111.43872399999998, 4.238883000000101], [111.43877900000012, 4.238924000000111], [111.43889200000007, 4.238924000000111], [111.43895000000003, 4.238967000000116], [111.43889200000007, 4.239010000000121], [111.43877900000012, 4.239011000000005], [111.43872399999998, 4.239052000000015], [111.43883699999992, 4.239137000000142], [111.43883699999992, 4.239391000000012], [111.43872500000009, 4.239476000000138], [111.43873800000011, 4.239486000000056], [111.43875400000002, 4.23949900000008], [111.43878100000012, 4.239518999999916], [111.43883699999992, 4.239561000000037], [111.43883699999992, 4.239645999999993], [111.43895000000003, 4.239731000000063], [111.43889200000007, 4.239774000000068], [111.43878000000001, 4.239774000000068], [111.43872500000009, 4.239816000000019], [111.43878000000001, 4.239857000000029], [111.43895000000003, 4.239857000000029], [111.43895000000003, 4.24019700000008], [111.43878000000001, 4.24019700000008], [111.43872500000009, 4.240239000000031], [111.43878000000001, 4.2402810000000954], [111.43889300000012, 4.2402810000000954], [111.43895000000003, 4.240324000000101], [111.43883800000003, 4.2404090000000565], [111.43889300000012, 4.240451000000121], [111.43900499999995, 4.240451000000121], [111.43906299999998, 4.240494000000126], [111.43900600000006, 4.240537000000131], [111.43878000000001, 4.240537000000131], [111.43872500000009, 4.240577999999971], [111.43878000000001, 4.240620000000092], [111.43979400000006, 4.240618999999981], [111.439907, 4.2407040000001075], [111.44080800000012, 4.2407040000001075], [111.44091999999995, 4.240789000000063], [111.441822, 4.240788000000123], [111.44187900000009, 4.2408320000000685], [111.441822, 4.240874000000133], [111.438668, 4.240876000000128], [111.43861300000003, 4.240918000000079], [111.438668, 4.240959000000089], [111.43889300000012, 4.240959000000089], [111.43895000000003, 4.241002000000094], [111.43883800000003, 4.241088000000104], [111.43895099999997, 4.24117200000012], [111.43889300000012, 4.241215000000125], [111.43878100000012, 4.241215000000125], [111.43872599999997, 4.241257000000019], [111.43878100000012, 4.241298000000029], [111.43889300000012, 4.241298000000029], [111.43895099999997, 4.241341999999975], [111.43889300000012, 4.24138499999998], [111.43878100000012, 4.24138499999998], [111.43872599999997, 4.241427000000044], [111.43878100000012, 4.241468000000111], [111.43889300000012, 4.241468000000111], [111.43895099999997, 4.241511000000116], [111.43889300000012, 4.2415540000001215], [111.43872599999997, 4.2415540000001215], [111.43872700000009, 4.242698999999959], [111.43878100000012, 4.242739999999969], [111.438894, 4.24265500000007], [111.43895200000003, 4.242698999999959], [111.43895200000003, 4.242868000000101], [111.438894, 4.242911000000106], [111.438782, 4.24282599999998], [111.43844400000012, 4.242827000000091], [111.43838899999997, 4.242868000000101], [111.43866900000006, 4.243080000000077], [111.438782, 4.243080000000077], [111.438894, 4.2431640000000925], [111.43912000000006, 4.2431640000000925], [111.43917699999997, 4.243207000000098], [111.43912000000006, 4.243250000000103], [111.438782, 4.243250999999987], [111.43872700000009, 4.243291999999997], [111.43884000000003, 4.243377000000123], [111.43872700000009, 4.2434610000001385], [111.438782, 4.243503000000089], [111.43934500000006, 4.243503000000089], [111.439458, 4.243587999999988], [111.440021, 4.243587000000105], [111.44013399999994, 4.243672000000004], [111.440697, 4.243672000000004], [111.44081000000011, 4.24375700000013], [111.44126000000006, 4.24375700000013], [111.441373, 4.243840999999975], [111.44182300000006, 4.243840999999975], [111.441936, 4.2439260000000445], [111.44249900000005, 4.24392499999999], [111.442612, 4.244010000000117], [111.44317500000005, 4.244010000000117], [111.443288, 4.244095000000016], [111.443851, 4.244095000000016], [111.44396399999994, 4.244179000000031], [111.44441400000005, 4.244177999999977], [111.444527, 4.244263000000046], [111.44509000000005, 4.244263000000046], [111.44514800000002, 4.244306000000051], [111.44509000000005, 4.244349999999997], [111.442612, 4.2443510000000515], [111.44249900000005, 4.244435000000067], [111.43889500000012, 4.244437000000062], [111.43884000000003, 4.2444790000000125], [111.43895300000014, 4.244564000000082], [111.43889500000012, 4.244608000000028], [111.43878300000006, 4.244608000000028], [111.43872800000014, 4.244649000000038], [111.43878300000006, 4.244690999999932], [111.43889500000012, 4.244690999999932], [111.43895300000014, 4.244733999999937], [111.43884000000003, 4.2448179999999525], [111.43895300000014, 4.244903000000079], [111.43889500000012, 4.244946999999968], [111.43878300000006, 4.244946999999968], [111.43872800000014, 4.244989000000089], [111.43895300000014, 4.24515800000006], [111.43895300000014, 4.245286000000135], [111.43878300000006, 4.245286000000135], [111.43872800000014, 4.245328000000086], [111.43878300000006, 4.245369000000096], [111.43895300000014, 4.245369000000096], [111.43895300000014, 4.245540000000005], [111.43872800000014, 4.245540000000005], [111.43872800000014, 4.246090000000038], [111.43861600000014, 4.246174999999994], [111.43872900000008, 4.24626000000012], [111.43872900000008, 4.246429999999975], [111.43861600000014, 4.246515000000045], [111.43872900000008, 4.246600000000001], [111.43872900000008, 4.24668500000007], [111.43884100000008, 4.246768999999915], [111.43872900000008, 4.246854000000042], [111.43873000000013, 4.248041000000001], [111.43878500000005, 4.248082000000011], [111.43889700000011, 4.2479979999999955], [111.43895500000008, 4.248041000000001], [111.43895500000008, 4.248169000000132], [111.438559, 4.248169000000132], [111.43850400000008, 4.248211000000026], [111.438559, 4.248252999999977], [111.43878500000005, 4.248252000000093], [111.43884199999997, 4.248295999999982], [111.43878500000005, 4.248338000000103], [111.43867199999994, 4.248338000000103], [111.43861700000002, 4.248379999999997], [111.43867199999994, 4.248422000000119], [111.43895500000008, 4.248422000000119], [111.43895500000008, 4.248550000000023], [111.43889700000011, 4.248593000000028], [111.43878500000005, 4.248508000000129], [111.43873000000013, 4.248550000000023], [111.43873000000013, 4.248634000000038], [111.43861700000002, 4.248718999999994], [111.43867199999994, 4.248761000000059], [111.43878500000005, 4.248761000000059], [111.438898, 4.2488460000000146], [111.44024900000005, 4.248845000000131], [111.440362, 4.24893000000003], [111.44171399999993, 4.2489289999999755], [111.44182599999999, 4.249012999999991], [111.4431780000001, 4.249012999999991], [111.44329100000004, 4.24909800000006], [111.4446420000001, 4.249097000000006], [111.44475500000004, 4.249182000000076], [111.4458810000001, 4.249181000000021], [111.44599400000004, 4.2492659999999205], [111.44711999999993, 4.249265000000037], [111.44723300000004, 4.249349000000052], [111.44835899999998, 4.249349000000052], [111.4484720000001, 4.249434000000008], [111.44920600000006, 4.249433000000067], [111.44920600000006, 4.249774000000059], [111.44836000000004, 4.249774999999943], [111.44824699999992, 4.249860000000069], [111.44745899999992, 4.249860000000069], [111.44734599999998, 4.249944999999968], [111.44655799999998, 4.249944999999968], [111.44644500000004, 4.250030000000095], [111.44588200000004, 4.250030999999979], [111.4457690000001, 4.250116000000105], [111.4449810000001, 4.250116000000105], [111.44486799999999, 4.250201000000061], [111.44419199999999, 4.250202000000115], [111.44407999999993, 4.250286000000131], [111.44340399999999, 4.250286000000131], [111.44329100000004, 4.2503710000000865], [111.44261599999999, 4.250372000000141], [111.44250300000004, 4.250457000000097], [111.44193999999999, 4.250457000000097], [111.44182700000005, 4.250541999999996], [111.44126399999999, 4.250543000000107], [111.4411510000001, 4.250627000000122], [111.44058800000005, 4.250627000000122], [111.44047599999999, 4.250712000000021], [111.43991200000005, 4.250712000000021], [111.43985700000013, 4.250753999999972], [111.43980000000005, 4.250798000000032], [111.43923699999999, 4.250798000000032], [111.43912400000005, 4.2508829999999875], [111.43884399999996, 4.2508829999999875], [111.43884399999996, 4.251009000000124], [111.43873100000002, 4.251094000000023], [111.43884399999996, 4.251178999999979], [111.43884399999996, 4.25143300000002], [111.43873100000002, 4.251517999999919], [111.43884399999996, 4.251601999999934], [111.43884399999996, 4.251772000000017], [111.43873200000013, 4.251858000000027], [111.43873200000013, 4.252112000000068], [111.43884500000007, 4.252196999999967], [111.43878700000005, 4.252239000000088], [111.4385620000001, 4.252239000000088], [111.43850699999996, 4.252280999999982], [111.4385620000001, 4.2523230000001035], [111.43878700000005, 4.252322000000049], [111.43884500000007, 4.252366000000109], [111.43873200000013, 4.252451000000065], [111.43884500000007, 4.25253500000008], [111.43873200000013, 4.252619999999979], [111.43873300000001, 4.253849000000059], [111.43889999999999, 4.253849000000059], [111.43895800000001, 4.253892000000064], [111.43889999999999, 4.2539350000000695], [111.43856299999999, 4.25393600000001], [111.43850800000007, 4.25397700000002], [111.43856299999999, 4.254019000000085], [111.4389010000001, 4.254019000000085], [111.43895800000001, 4.25406200000009], [111.4389010000001, 4.254105000000095], [111.43878799999999, 4.254106000000036], [111.43873300000001, 4.254145999999935], [111.43878799999999, 4.254188000000056], [111.4390130000001, 4.254188000000056], [111.43907100000013, 4.254231000000061], [111.4390130000001, 4.25427499999995], [111.43878799999999, 4.25427499999995], [111.43873300000001, 4.25431599999996], [111.43878799999999, 4.254358000000082], [111.4390130000001, 4.254358000000082], [111.43907100000013, 4.254401000000087], [111.4390130000001, 4.254444999999976], [111.43878799999999, 4.254444999999976], [111.43873300000001, 4.254486000000043], [111.43878799999999, 4.254527000000053], [111.44689800000003, 4.254521999999952], [111.44701099999997, 4.254607000000078], [111.44926400000008, 4.254606000000024], [111.44932000000006, 4.254650000000083], [111.44926400000008, 4.254693000000088], [111.44892599999997, 4.254693000000088], [111.44881300000003, 4.254777000000104], [111.44791199999992, 4.254778000000044], [111.44779899999997, 4.254863000000114], [111.44701099999997, 4.254863000000114], [111.44689800000003, 4.254949000000124], [111.44611000000003, 4.254949000000124], [111.44599699999992, 4.25503400000008], [111.44532200000003, 4.2550350000001345], [111.44520899999992, 4.255118999999979], [111.44453299999998, 4.255118999999979], [111.44442000000004, 4.255204000000106], [111.44374499999992, 4.2552049999999895], [111.44363200000004, 4.255290000000116], [111.44306899999998, 4.255290000000116], [111.44295600000004, 4.255375000000015], [111.44239299999998, 4.255375000000015], [111.44228000000004, 4.2554600000001415], [111.44160499999998, 4.2554600000001415], [111.44149200000004, 4.2555450000000405], [111.44092899999998, 4.2555450000000405], [111.4408160000001, 4.255631000000051], [111.44025300000004, 4.255631000000051], [111.4401400000001, 4.255716000000007], [111.43946500000004, 4.255716000000007], [111.4393520000001, 4.255801000000133], [111.43884700000007, 4.255801000000133], [111.43884700000007, 4.256013000000053], [111.43873400000012, 4.256097000000068], [111.43884700000007, 4.256182000000024], [111.43884700000007, 4.25660600000009], [111.43873400000012, 4.256691000000046], [111.43884700000007, 4.2567750000000615], [111.43873500000001, 4.256859999999961], [111.43884700000007, 4.256945000000087], [111.43884700000007, 4.257114000000058], [111.43873500000001, 4.257199000000128], [111.43884700000007, 4.257284000000084], [111.43884700000007, 4.257454000000109], [111.43873500000001, 4.257539000000008], [111.43884800000012, 4.257624000000135], [111.43884800000012, 4.257793000000106], [111.43873500000001, 4.257878000000005], [111.43884800000012, 4.257963000000132], [111.43884800000012, 4.2585129999999936], [111.43974900000006, 4.258512000000053], [111.43974900000006, 4.25902300000007], [111.43879100000004, 4.25902300000007], [111.43873600000012, 4.259064999999964], [111.43879100000004, 4.259106000000031], [111.43912899999992, 4.259106000000031], [111.439186, 4.259150000000091], [111.43912899999992, 4.259193000000096], [111.43879100000004, 4.259193000000096], [111.43873600000012, 4.2592350000000465], [111.43879100000004, 4.259277000000111], [111.43912899999992, 4.259276000000057], [111.439186, 4.259320000000116], [111.43912899999992, 4.259362000000067], [111.4385660000001, 4.259363000000121], [111.43851099999995, 4.259404000000131], [111.4385660000001, 4.259446000000082], [111.43879100000004, 4.259446000000082], [111.43884900000006, 4.259489000000087], [111.43873600000012, 4.259573999999986], [111.43884900000006, 4.259659000000113], [111.43873600000012, 4.259743000000128], [111.438737, 4.261058999999932], [111.43856699999998, 4.261058999999932], [111.43851200000006, 4.261099999999942], [111.43856699999998, 4.2611420000000635], [111.438737, 4.2611420000000635], [111.43873800000011, 4.263559000000043], [111.43862600000006, 4.2636439999999425], [111.43879300000003, 4.263770999999963], [111.43890599999997, 4.263770999999963], [111.43896399999994, 4.263813999999968], [111.43890599999997, 4.263858000000084], [111.43879300000003, 4.263858000000084], [111.43873800000011, 4.26389800000004], [111.43879300000003, 4.263940000000105], [111.43890599999997, 4.263940000000105], [111.43896399999994, 4.26398300000011], [111.43890599999997, 4.2640270000000555], [111.43868099999997, 4.2640270000000555], [111.43862600000006, 4.26406900000012], [111.43868099999997, 4.26411000000013], [111.43890599999997, 4.26411000000013], [111.43896399999994, 4.264153000000135], [111.43890599999997, 4.26419600000014], [111.43879399999992, 4.26419600000014], [111.438739, 4.264238000000091], [111.43879399999992, 4.264279000000101], [111.43890599999997, 4.264279000000101], [111.43896399999994, 4.26432299999999], [111.43890599999997, 4.264365999999995], [111.43879399999992, 4.264365999999995], [111.438739, 4.264408000000117], [111.438851, 4.264493000000016], [111.438851, 4.26451400000002], [111.438851, 4.264530999999977], [111.43885200000011, 4.264536000000021], [111.43885200000011, 4.264577000000088], [111.438739, 4.264661999999987], [111.43885200000011, 4.2647470000001135], [111.438739, 4.264832000000013], [111.43885200000011, 4.264916000000028], [111.43885200000011, 4.2650860000000534], [111.438739, 4.265171000000009], [111.43885200000011, 4.265255000000025], [111.438739, 4.265339999999981], [111.43885200000011, 4.26542500000005], [111.438739, 4.265510000000006], [111.43879399999992, 4.265551000000016], [111.43890700000003, 4.265551000000016], [111.43896399999994, 4.265595000000076], [111.43890700000003, 4.265638000000081], [111.43868200000009, 4.265638000000081], [111.43862699999994, 4.265680000000032], [111.43868200000009, 4.265721000000042], [111.43890700000003, 4.265721000000042], [111.43896500000005, 4.265764999999931], [111.43890700000003, 4.265807000000052], [111.43879500000003, 4.265807000000052], [111.43874000000005, 4.265848999999946], [111.43879500000003, 4.265890000000013], [111.43890700000003, 4.265890000000013], [111.43896500000005, 4.2659340000000725], [111.43890700000003, 4.265977000000078], [111.43879500000003, 4.265977000000078], [111.43874000000005, 4.266019000000028], [111.43879500000003, 4.266061000000093], [111.43890700000003, 4.266060000000039], [111.43896500000005, 4.266104000000098], [111.43890700000003, 4.266146000000049], [111.43868200000009, 4.266147000000103], [111.43862699999994, 4.266188000000113], [111.43868200000009, 4.266230000000064], [111.43902000000014, 4.266230000000064], [111.43913300000008, 4.266314999999963], [111.44059700000008, 4.266314000000079], [111.44071000000002, 4.2663989999999785], [111.44206100000008, 4.266398000000095], [111.44217399999997, 4.266483000000051], [111.44330099999996, 4.26648200000011], [111.44341300000002, 4.266566000000125], [111.44442700000008, 4.266566000000125], [111.44454000000002, 4.266651000000081], [111.44555299999996, 4.26664999999997], [111.44566600000007, 4.2667350000000965], [111.44656700000002, 4.2667350000000965], [111.44668000000013, 4.266819000000112], [111.44769400000001, 4.2668180000000575], [111.44780600000007, 4.266903000000127], [111.44870800000007, 4.266902000000073], [111.4488780000001, 4.267031000000088], [111.44882000000013, 4.267074000000093], [111.44825700000007, 4.267074999999977], [111.44814400000013, 4.267158999999992], [111.44758100000007, 4.267158999999992], [111.44746900000007, 4.267244000000119], [111.44690500000013, 4.267245000000003], [111.44679300000007, 4.267330000000129], [111.44634200000007, 4.267330000000129], [111.44623000000001, 4.267415000000028], [111.44577900000002, 4.267415000000028], [111.44566700000001, 4.2674990000000435], [111.44521599999996, 4.267499999999984], [111.44510300000002, 4.267585000000054], [111.44476600000007, 4.267585000000054], [111.44465300000013, 4.26767000000001], [111.44431500000002, 4.26767000000001], [111.44420200000008, 4.267755000000136], [111.44386400000002, 4.267755000000136], [111.44375200000002, 4.267840000000035], [111.44341400000008, 4.267840000000035], [111.44330099999996, 4.267924999999991], [111.44296300000008, 4.267924999999991], [111.44285100000008, 4.268010000000061], [111.44262600000008, 4.268011000000001], [111.44251299999996, 4.268095000000017], [111.44217500000008, 4.268095000000017], [111.44206200000013, 4.268180000000086], [111.44172500000013, 4.268180000000086], [111.44161200000002, 4.268265000000042], [111.44138700000008, 4.268265000000042], [111.44127400000013, 4.268351000000052], [111.44104899999996, 4.268351000000052], [111.44093600000008, 4.268435000000068], [111.44071100000008, 4.268435000000068], [111.44059799999997, 4.268519999999967], [111.44048600000013, 4.268519999999967], [111.44037300000002, 4.268605000000093], [111.43868299999997, 4.268605999999977], [111.43862899999993, 4.268648000000098], [111.43868400000008, 4.2686890000001085], [111.43890900000002, 4.2686890000001085], [111.43896700000005, 4.268733000000054], [111.43890900000002, 4.268775000000119], [111.43879600000008, 4.268775000000119], [111.438741, 4.26881700000007], [111.43879600000008, 4.268859000000134], [111.43890900000002, 4.268859000000134], [111.43896700000005, 4.268902000000139], [111.43890900000002, 4.268944999999974], [111.43868400000008, 4.268946000000085], [111.43862899999993, 4.268987000000095], [111.43868400000008, 4.269028999999989], [111.43890900000002, 4.269028999999989], [111.43896700000005, 4.26907100000011], [111.43890900000002, 4.269114999999999], [111.43879600000008, 4.269114999999999], [111.438741, 4.2691560000000095], [111.4388540000001, 4.269241000000136], [111.43874200000005, 4.269326000000092], [111.43874200000005, 4.270513000000051], [111.43879700000002, 4.270554999999945], [111.438853, 4.270513000000051], [111.438853, 4.270427999999924], [111.43891000000013, 4.27038600000003], [111.43896700000005, 4.270427999999924], [111.4389680000001, 4.270642000000066], [111.43857200000002, 4.270642000000066], [111.4385170000001, 4.270683000000076], [111.43857200000002, 4.270724000000087], [111.43891000000013, 4.270724000000087], [111.4389680000001, 4.270767000000092], [111.43891000000013, 4.270811000000037], [111.43879700000002, 4.270811000000037], [111.43874200000005, 4.270852000000048], [111.43879700000002, 4.270894000000112], [111.43891000000013, 4.270894000000112], [111.4389680000001, 4.270937000000117], [111.43891000000013, 4.270981000000063], [111.43879700000002, 4.270981000000063], [111.43874299999999, 4.271022000000073], [111.43879800000008, 4.271063000000083], [111.43891000000013, 4.271063000000083], [111.4389680000001, 4.271106999999972], [111.43891000000013, 4.271149999999977], [111.43868500000013, 4.271149999999977], [111.43863000000005, 4.271192000000099], [111.43868500000013, 4.271233000000109], [111.43908100000004, 4.271233000000109], [111.43908100000004, 4.27136100000007], [111.4389680000001, 4.2714460000001395], [111.43908100000004, 4.2715310000000954], [111.43908100000004, 4.2716159999999945], [111.4389680000001, 4.27170000000001], [111.43902300000002, 4.271742000000131], [111.43913599999996, 4.271657000000005], [111.43947400000008, 4.271657000000005], [111.43958600000008, 4.271572000000106], [111.43969900000002, 4.271657000000005], [111.43981200000013, 4.271572000000106], [111.44003700000007, 4.271572000000106], [111.44014900000013, 4.271486999999979], [111.44026200000008, 4.271572000000106], [111.44037500000002, 4.271486999999979], [111.44071300000007, 4.271486000000095], [111.44082500000013, 4.2714010000001394], [111.44093800000002, 4.271486000000095], [111.44105099999996, 4.2714010000001394], [111.44138799999996, 4.2714010000001394], [111.44150100000007, 4.271317000000124], [111.44161400000002, 4.271317000000124], [111.44172600000007, 4.2714010000001394], [111.44341600000007, 4.271400000000085], [111.44352900000001, 4.271484999999984], [111.44499300000001, 4.2714840000001], [111.44510600000012, 4.2715689999999995], [111.44668300000001, 4.271568000000116], [111.44679500000007, 4.271653000000072], [111.44848500000012, 4.271652000000131], [111.448598, 4.271735999999976], [111.448823, 4.271735999999976], [111.44888099999997, 4.271778999999981], [111.448823, 4.271823000000097], [111.44848500000012, 4.271823000000097], [111.44837300000006, 4.271907999999996], [111.44792200000006, 4.271907999999996], [111.44780900000012, 4.271993000000123], [111.44747100000006, 4.271993000000123], [111.447359, 4.272078000000022], [111.44702100000012, 4.272078000000022], [111.44690800000001, 4.272162999999978], [111.44657000000012, 4.272162999999978], [111.44645800000006, 4.272248000000047], [111.44623300000012, 4.272248999999988], [111.44612000000001, 4.272333000000003], [111.44589500000001, 4.272333000000003], [111.44578200000007, 4.27241800000013], [111.44544400000001, 4.27241800000013], [111.44533200000001, 4.272503000000029], [111.44510600000012, 4.272503000000029], [111.44499400000007, 4.272589000000039], [111.44465600000001, 4.272589000000039], [111.44454300000007, 4.272673000000054], [111.44431800000012, 4.272673000000054], [111.44420500000001, 4.27275800000001], [111.44116400000007, 4.272760000000005], [111.44105099999996, 4.272675000000049], [111.44093900000013, 4.272760000000005], [111.44048800000013, 4.272760000000005], [111.44037500000002, 4.272675000000049], [111.43868600000008, 4.272675999999933], [111.43863099999993, 4.272718000000054], [111.43868600000008, 4.272760000000005], [111.43891100000002, 4.272759000000065], [111.43896900000004, 4.27280300000001], [111.43891100000002, 4.2728460000000155], [111.43879899999996, 4.2728460000000155], [111.43874400000004, 4.27288800000008], [111.43879899999996, 4.272930000000031], [111.438827, 4.272930000000031], [111.43884900000006, 4.272930000000031], [111.43885699999998, 4.27292900000009], [111.43891100000002, 4.27292900000009], [111.43896900000004, 4.272972000000095], [111.43891100000002, 4.2730150000001], [111.43857300000013, 4.273016000000041], [111.43851799999999, 4.273057000000051], [111.43857300000013, 4.273098999999945], [111.43891100000002, 4.273098999999945], [111.43896900000004, 4.27314199999995], [111.43891100000002, 4.273184999999955], [111.43888400000009, 4.273184999999955], [111.43888200000009, 4.273184999999955], [111.43879899999996, 4.2731860000000665], [111.43874400000004, 4.273227000000077], [111.43879899999996, 4.273268999999971], [111.43891100000002, 4.273268999999971], [111.43896900000004, 4.273311000000092], [111.43891100000002, 4.273354999999981], [111.43874400000004, 4.273354999999981], [111.43874499999998, 4.274712000000022], [111.43857400000002, 4.274712000000022], [111.4385190000001, 4.274753000000032], [111.43857400000002, 4.274794999999983], [111.43874499999998, 4.274794999999983], [111.43874499999998, 4.2751780000000394], [111.43863200000004, 4.275262000000055], [111.43874499999998, 4.275346999999954], [111.43874600000004, 4.277254000000028], [111.442518, 4.277252000000033], [111.44263099999995, 4.277336999999989], [111.44522200000011, 4.277334999999994], [111.44533399999995, 4.277420000000063], [111.44713700000011, 4.277419000000009], [111.44724899999994, 4.277504000000079], [111.44882600000005, 4.277503000000024], [111.448939, 4.2775870000000396], [111.44922200000013, 4.2775870000000396], [111.44922200000013, 4.27775900000006], [111.44905200000011, 4.27775900000006], [111.448939, 4.277843000000075], [111.44792500000011, 4.277844000000016], [111.44781300000011, 4.277929000000086], [111.44679900000006, 4.277929000000086], [111.44668600000011, 4.278015000000096], [111.44567299999994, 4.278015000000096], [111.44556, 4.278100000000052], [111.44454599999995, 4.278101000000106], [111.44443400000011, 4.278185000000121], [111.44319500000012, 4.278186000000062], [111.443082, 4.278271000000132], [111.44184299999995, 4.278272000000072], [111.44173, 4.278357000000142], [111.44037899999995, 4.278357000000142], [111.44026600000007, 4.278442999999982], [111.43891400000007, 4.278442999999982], [111.43874699999992, 4.278569000000118], [111.43880200000007, 4.278611000000012], [111.43891400000007, 4.278611000000012], [111.43897200000009, 4.278654000000017], [111.43891500000001, 4.278698000000134], [111.43880200000007, 4.278698000000134], [111.43874699999992, 4.278738999999973], [111.43880200000007, 4.2787810000000945], [111.43902700000001, 4.2787810000000945], [111.43908500000003, 4.2788229999999885], [111.43902700000001, 4.278867000000105], [111.43857700000007, 4.278867000000105], [111.43852199999998, 4.278908999999999], [111.43857700000007, 4.278950000000009], [111.43880200000007, 4.278950000000009], [111.43886000000003, 4.278993000000014], [111.43880200000007, 4.27903700000013], [111.43868900000012, 4.27903700000013], [111.43863400000004, 4.279079000000024], [111.43868900000012, 4.2791200000000345], [111.43880200000007, 4.2791200000000345], [111.43885899999998, 4.27916300000004], [111.43874699999992, 4.2792479999999955], [111.43874800000003, 4.28039200000012], [111.43891500000001, 4.28039200000012], [111.43897299999998, 4.280434000000071], [111.43891600000006, 4.28047800000013], [111.43880299999995, 4.28047800000013], [111.43863500000009, 4.28060499999998], [111.43880299999995, 4.280731000000117], [111.43914100000006, 4.280731000000117], [111.43919799999998, 4.280774000000122], [111.43914100000006, 4.280817000000127], [111.43891600000006, 4.280817000000127], [111.43874800000003, 4.280943999999977], [111.43880299999995, 4.280984999999987], [111.43902800000012, 4.280984999999987], [111.43908599999992, 4.281029000000103], [111.439029, 4.281070999999997], [111.43891600000006, 4.281070999999997], [111.43874800000003, 4.281198000000018], [111.43880299999995, 4.281240000000139], [111.43891600000006, 4.2811550000000125], [111.43897400000009, 4.281198000000018], [111.43897400000009, 4.281368000000043], [111.43886099999997, 4.281452000000115], [111.43886099999997, 4.281537000000014], [111.43874899999992, 4.281622000000141], [111.43886099999997, 4.28170700000004], [111.43886099999997, 4.281791000000055], [111.43874899999992, 4.281877000000065], [111.43886099999997, 4.281962000000021], [111.43886099999997, 4.2820469999999204], [111.43874899999992, 4.282130999999936], [111.43874899999992, 4.282216000000062], [111.43886200000003, 4.282301000000018], [111.43886200000003, 4.282385000000033], [111.43874899999992, 4.282470000000103], [111.43886200000003, 4.282555000000059], [111.43874899999992, 4.282639999999958], [111.43886200000003, 4.282723999999973], [111.43886200000003, 4.282979000000125], [111.43874899999992, 4.283063000000141], [111.43886200000003, 4.2831480000000965], [111.43886200000003, 4.283319000000006], [111.43875000000003, 4.283403000000021], [111.43886200000003, 4.283487999999977], [111.43875000000003, 4.2835730000001035], [111.43886200000003, 4.283658000000003], [111.43875000000003, 4.283742000000018], [111.43875000000003, 4.283826999999974], [111.438692, 4.283869999999979], [111.43857900000006, 4.283785000000023], [111.43852300000009, 4.283785000000023], [111.43851999999998, 4.283785000000023], [111.43850699999996, 4.283786000000134], [111.43846700000006, 4.283786000000134], [111.43829900000003, 4.2839120000000435], [111.43852500000003, 4.284081000000015], [111.43829900000003, 4.284251999999924]], [[111.44062799999995, 4.221497000000056], [111.44068399999998, 4.221454000000051], [111.44079700000009, 4.22153899999995], [111.44091000000003, 4.221454000000051], [111.44192300000003, 4.22145299999994], [111.44203599999992, 4.221369000000095], [111.44214900000003, 4.22145299999994], [111.44226100000009, 4.221369000000095], [111.44327500000014, 4.221368000000041], [111.44338699999997, 4.221283000000085], [111.44349999999991, 4.221368000000041], [111.44361300000003, 4.221368000000041], [111.44372500000009, 4.221283000000085], [111.44383800000003, 4.221368000000041], [111.44395100000014, 4.221283000000085], [111.44682399999999, 4.2212809999999195], [111.44682399999999, 4.2218760000001225], [111.44654200000008, 4.221877000000063], [111.44642899999997, 4.221962000000133], [111.44575300000002, 4.221962000000133], [111.44564100000014, 4.2220459999999775], [111.44496499999997, 4.222047000000089], [111.44485200000008, 4.222131999999988], [111.44428900000003, 4.222131999999988], [111.44417600000008, 4.222217000000114], [111.44350100000003, 4.222217999999998], [111.44338800000008, 4.2223030000001245], [111.44260000000008, 4.2223030000001245], [111.44248700000014, 4.22238700000014], [111.44181099999997, 4.222388000000024], [111.44169900000014, 4.2224729999999795], [111.44102299999997, 4.2224729999999795], [111.44091000000003, 4.222558000000106], [111.44062799999995, 4.222558000000106], [111.44062799999995, 4.221497000000056]], [[111.92160300000012, 4.363990999999999], [111.92554800000005, 4.363987000000066], [111.92554800000005, 4.364496999999972], [111.92436500000002, 4.364498000000026], [111.92425200000008, 4.364413000000127], [111.92267500000003, 4.364415000000122], [111.92256300000014, 4.364329999999995], [111.921604, 4.36433199999999], [111.92160300000012, 4.363990999999999]], [[111.92156499999999, 4.2384139999999775], [111.92162300000001, 4.2384139999999775], [111.92297400000007, 4.238413000000094], [111.92308700000001, 4.2383270000000834], [111.926578, 4.2383230000000935], [111.92669100000012, 4.2384080000000495], [111.92747900000012, 4.238407000000109], [111.92759200000006, 4.238490999999954], [111.928493, 4.23849000000007], [111.92855000000009, 4.238533000000075], [111.928493, 4.238576999999964], [111.92229899999995, 4.238584000000003], [111.92218600000007, 4.238499000000104], [111.92207300000013, 4.238585000000114], [111.92196100000007, 4.238585000000114], [111.92184799999995, 4.238499999999988], [111.92173600000012, 4.238585000000114], [111.92156499999999, 4.238585000000114], [111.92156499999999, 4.2384139999999775]], [[111.7924430000001, 4.295329000000038], [111.79249900000013, 4.2952849999999785], [111.80173600000006, 4.295276000000115], [111.80179299999998, 4.29531900000012], [111.80173600000006, 4.295362000000125], [111.79249900000013, 4.295370999999989], [111.7924430000001, 4.295329000000038]], [[111.47271100000012, 4.377764999999954], [111.47276900000014, 4.377721999999949], [111.48178100000007, 4.377717000000075], [111.48183799999998, 4.377759000000026], [111.48178100000007, 4.377803000000085], [111.47276900000014, 4.377807999999959], [111.47271100000012, 4.377764999999954]], [[111.498962, 4.380546999999922], [111.49901800000004, 4.380503000000033], [111.50600300000013, 4.380499000000043], [111.50606099999993, 4.380542000000048], [111.50600300000013, 4.380585999999994], [111.49901899999992, 4.380589999999927], [111.498962, 4.380546999999922]], [[111.540979, 4.376871000000051], [111.54103600000008, 4.376828000000046], [111.54757000000001, 4.376823000000002], [111.54762700000009, 4.376866000000007], [111.54757000000001, 4.376910000000123], [111.54103600000008, 4.376914000000056], [111.540979, 4.376871000000051]], [[111.92337900000001, 4.248800000000131], [111.92343699999998, 4.248757000000126], [111.92996900000009, 4.248748999999975], [111.930026, 4.24879199999998], [111.92996999999997, 4.2488349999999855], [111.92343699999998, 4.248842000000025], [111.92337900000001, 4.248800000000131]], [[111.44739099999998, 4.423658000000046], [111.44744800000007, 4.4236139999999295], [111.44846199999995, 4.4236139999999295], [111.44857500000006, 4.4235290000000305], [111.448688, 4.4236139999999295], [111.44880000000006, 4.4235290000000305], [111.44981400000012, 4.423527999999919], [111.44992700000006, 4.4234440000000745], [111.45003900000006, 4.423527999999919], [111.450152, 4.4234440000000745], [111.45021000000003, 4.42348700000008], [111.45021000000003, 4.42369999999994], [111.44744800000007, 4.423701000000051], [111.44739099999998, 4.423658000000046]], [[111.92667199999994, 4.363985000000071], [111.92723699999999, 4.363985000000071], [111.92723800000005, 4.3646640000001184], [111.92695600000002, 4.3646640000001184], [111.92684300000008, 4.364580000000103], [111.92667300000005, 4.364580000000103], [111.92667199999994, 4.363985000000071]], [[111.92599700000005, 4.364580999999987], [111.92599700000005, 4.363986000000125], [111.9265620000001, 4.363985000000071], [111.9265620000001, 4.364580999999987], [111.92599700000005, 4.364580999999987]], [[111.92025200000006, 4.363992999999994], [111.921155, 4.36399200000011], [111.921155, 4.36433199999999], [111.92076000000003, 4.364333000000045], [111.92064800000014, 4.364249000000029], [111.92025200000006, 4.364249000000029], [111.92025200000006, 4.363992999999994]], [[111.92483900000002, 4.519664999999975], [111.9248960000001, 4.519664999999975], [111.92523399999999, 4.519664999999975], [111.9253470000001, 4.519580000000076], [111.92608000000001, 4.519578999999965], [111.92608000000001, 4.519835000000057], [111.92512199999999, 4.519836000000112], [111.92500900000005, 4.519750999999985], [111.92489699999999, 4.519836000000112], [111.92483900000002, 4.5197930000001065], [111.92483900000002, 4.519664999999975]], [[111.92258600000008, 4.519795999999985], [111.922643, 4.519752000000096], [111.92399499999999, 4.519750000000101], [111.9241080000001, 4.519666000000086], [111.92472800000007, 4.519664999999975], [111.92472800000007, 4.519836000000112], [111.922643, 4.51983899999999], [111.92258600000008, 4.519795999999985]], [[111.44670700000006, 4.217294999999979], [111.44811600000014, 4.217294000000095], [111.44817300000005, 4.217337999999984], [111.44811600000014, 4.217380999999989], [111.44755300000008, 4.2173820000001], [111.44743999999997, 4.217466000000115], [111.44699000000003, 4.217466000000115], [111.44687700000009, 4.217551000000071], [111.44670799999994, 4.217551000000071], [111.44670700000006, 4.217294999999979]], [[111.92938100000009, 4.368137000000047], [111.92960800000003, 4.368135999999936], [111.92960900000014, 4.369027000000131], [111.92955200000006, 4.369071000000076], [111.92938200000003, 4.368942000000061], [111.92938100000009, 4.368137000000047]], [[111.925659, 4.363987000000066], [111.9258860000001, 4.363986000000125], [111.9258860000001, 4.364580999999987], [111.925659, 4.364582000000041], [111.925659, 4.363987000000066]], [[111.43938600000007, 4.217427999999984], [111.43944299999998, 4.217384000000095], [111.439501, 4.217427999999984], [111.439501, 4.218530000000044], [111.43944400000004, 4.218573000000049], [111.43938699999995, 4.218530000000044], [111.43938600000007, 4.217427999999984]], [[111.43863599999997, 4.284506000000022], [111.43869300000011, 4.284462000000076], [111.43875000000003, 4.284505000000081], [111.43875100000008, 4.285523000000126], [111.43869300000011, 4.285567000000015], [111.43863599999997, 4.285523000000126], [111.43863599999997, 4.284506000000022]], [[111.44040200000012, 4.221581999999955], [111.44045900000003, 4.22153899999995], [111.440517, 4.221581999999955], [111.440517, 4.222515000000101], [111.44045999999992, 4.22255899999999], [111.440403, 4.222515000000101], [111.44040200000012, 4.221581999999955]], [[111.43877099999997, 4.514822999999922], [111.438827, 4.5147799999999165], [111.43888499999997, 4.514822999999922], [111.43888600000008, 4.515756000000067], [111.43882800000006, 4.515799000000072], [111.43877099999997, 4.515756000000067], [111.43877099999997, 4.514822999999922]], [[111.440064, 4.2215830000000665], [111.44012099999992, 4.22153899999995], [111.44017900000011, 4.2215830000000665], [111.44017900000011, 4.222515000000101], [111.44012200000003, 4.22255899999999], [111.44006500000012, 4.222515000000101], [111.440064, 4.2215830000000665]], [[111.93005200000005, 4.364024000000086], [111.93010900000013, 4.363981000000081], [111.93016600000004, 4.364022999999975], [111.93016699999993, 4.364957000000004], [111.93011100000012, 4.365000000000009], [111.9300530000001, 4.364957000000004], [111.93005200000005, 4.364024000000086]], [[111.92971399999993, 4.364024000000086], [111.92977100000002, 4.363981000000081], [111.92982799999999, 4.364024000000086], [111.92982900000004, 4.364872000000105], [111.92977300000001, 4.364915999999994], [111.92971500000004, 4.364872000000105], [111.92971399999993, 4.364024000000086]], [[111.92937600000005, 4.364024000000086], [111.92943300000013, 4.3639819999999645], [111.92949000000004, 4.364024000000086], [111.92949099999998, 4.364872999999989], [111.92943500000013, 4.364915999999994], [111.92937699999993, 4.364872999999989], [111.92937600000005, 4.364024000000086]], [[111.92720400000007, 4.519408000000055], [111.92743200000012, 4.519408000000055], [111.92743200000012, 4.519833000000062], [111.92720500000001, 4.519833000000062], [111.92720400000007, 4.519408000000055]], [[111.44122800000008, 4.286454000000049], [111.44128400000005, 4.286411000000044], [111.44134200000008, 4.286454000000049], [111.44134299999996, 4.287218000000053], [111.441285, 4.287259999999947], [111.44122800000008, 4.287218000000053], [111.44122800000008, 4.286454000000049]], [[111.44910399999998, 4.460714999999993], [111.44916100000006, 4.460671000000048], [111.44921799999997, 4.460714999999993], [111.44921900000008, 4.461476999999945], [111.44916100000006, 4.461521000000062], [111.44910399999998, 4.461476999999945], [111.44910399999998, 4.460714999999993]], [[111.92448800000011, 4.233535999999958], [111.92454500000002, 4.233492999999953], [111.92499600000002, 4.233492000000069], [111.92544600000014, 4.233490999999958], [111.92550300000005, 4.233535000000074], [111.92544600000014, 4.2335780000000796], [111.92454500000002, 4.233578999999963], [111.92448800000011, 4.233535999999958]], [[111.92126500000006, 4.36399200000011], [111.92149300000005, 4.36399200000011], [111.92149300000005, 4.36433199999999], [111.92126600000012, 4.36433199999999], [111.92126500000006, 4.36399200000011]], [[111.446032, 4.217339000000095], [111.44608800000003, 4.21729600000009], [111.44625900000011, 4.217423999999994], [111.44625900000011, 4.217637000000082], [111.446032, 4.217637000000082], [111.446032, 4.217339000000095]], [[111.92619100000013, 4.51962199999997], [111.92636099999999, 4.5194929999999545], [111.92641800000007, 4.519537000000071], [111.92641800000007, 4.519834000000117], [111.92619100000013, 4.519834000000117], [111.92619100000013, 4.519791000000112], [111.92619100000013, 4.51962199999997]], [[111.4395110000001, 4.43358400000011], [111.43956800000001, 4.433541000000105], [111.43962499999992, 4.43358400000011], [111.43962600000003, 4.434093000000132], [111.43956800000001, 4.434137000000021], [111.4395110000001, 4.434093000000132], [111.4395110000001, 4.43358400000011]], [[111.92889400000013, 4.51927900000004], [111.92895199999998, 4.519236000000035], [111.92900900000006, 4.51927900000004], [111.92900900000006, 4.519786999999951], [111.92895300000004, 4.519831000000067], [111.92889500000001, 4.519788000000062], [111.92889400000013, 4.51927900000004]], [[111.93015400000013, 4.262568999999985], [111.93038100000007, 4.262568999999985], [111.93038100000007, 4.262825000000078], [111.93015400000013, 4.262825000000078], [111.93015400000013, 4.262568999999985]], [[111.44663900000012, 4.294253000000026], [111.44675200000006, 4.29416800000007], [111.44675200000006, 4.2940830000000005], [111.44680800000009, 4.294039999999995], [111.44686600000006, 4.2940830000000005], [111.44686600000006, 4.2943800000000465], [111.44663900000012, 4.294381000000101], [111.44663900000012, 4.294253000000026]], [[111.92855600000007, 4.51936500000005], [111.92861400000004, 4.519320999999934], [111.92867099999995, 4.51936500000005], [111.92867099999995, 4.519788000000062], [111.92861499999998, 4.519831000000067], [111.92855700000013, 4.519788000000062], [111.92855600000007, 4.51936500000005]], [[111.44637000000006, 4.217552000000126], [111.44637000000006, 4.217339000000095], [111.44642600000009, 4.217294999999979], [111.446597, 4.217423999999994], [111.446597, 4.217551000000071], [111.44637000000006, 4.217552000000126]], [[111.43865299999999, 4.314990000000023], [111.43893500000007, 4.314990000000023], [111.43899300000004, 4.315034000000082], [111.43893500000007, 4.3150770000000875], [111.4387680000001, 4.3150770000000875], [111.4387680000001, 4.315203000000054], [111.43871000000007, 4.315246000000059], [111.43865299999999, 4.315203000000054], [111.43865299999999, 4.314990000000023]], [[111.93057499999998, 4.512364999999932], [111.93080299999997, 4.512364999999932], [111.93080299999997, 4.512536999999952], [111.93057600000003, 4.512536999999952], [111.93057499999998, 4.512364999999932]], [[111.93078100000014, 4.496638000000075], [111.93078100000014, 4.496424000000104], [111.930951, 4.496424000000104], [111.93100800000008, 4.496467000000109], [111.93089500000013, 4.496552000000065], [111.93089500000013, 4.496637000000135], [111.93083899999993, 4.49668000000014], [111.93078100000014, 4.496638000000075]], [[111.93053600000007, 4.299284000000057], [111.93070599999993, 4.299284000000057], [111.93076300000007, 4.299327000000062], [111.93065000000013, 4.299412000000018], [111.93065100000001, 4.299496000000033], [111.9305940000001, 4.299539999999922], [111.93053600000007, 4.299496000000033], [111.93053600000007, 4.299284000000057]], [[111.43884800000012, 4.261694000000091], [111.43890500000003, 4.261649999999975], [111.43896300000006, 4.261694000000091], [111.43896300000006, 4.261948000000132], [111.43890500000003, 4.261991000000137], [111.43884800000012, 4.261948000000132], [111.43884800000012, 4.261694000000091]], [[111.92841700000008, 4.541453000000104], [111.92807900000003, 4.5414539999999874], [111.928021, 4.541410999999982], [111.92807900000003, 4.541367999999977], [111.92841700000008, 4.541367000000093], [111.928474, 4.541410999999982], [111.92841700000008, 4.541453000000104]], [[111.44708999999995, 4.2940830000000005], [111.44714599999998, 4.294039999999995], [111.447204, 4.2940830000000005], [111.447204, 4.294338000000096], [111.44714700000003, 4.2943800000000465], [111.44708999999995, 4.294338000000096], [111.44708999999995, 4.2940830000000005]], [[111.92686700000013, 4.51953599999996], [111.92692400000004, 4.519492000000071], [111.92698100000013, 4.51953599999996], [111.92698100000013, 4.519790000000057], [111.9269250000001, 4.519833000000062], [111.92686700000013, 4.519790000000057], [111.92686700000013, 4.51953599999996]], [[111.43908599999992, 4.477213000000063], [111.43925599999994, 4.477213000000063], [111.43931300000008, 4.477257000000009], [111.439143, 4.477384000000029], [111.43908599999992, 4.477342000000078], [111.43908599999992, 4.477213000000063]], [[111.44810300000012, 4.293998000000045], [111.44816000000003, 4.293953999999985], [111.44821800000005, 4.293998000000045], [111.44821800000005, 4.294167000000016], [111.44816000000003, 4.294211000000075], [111.44810300000012, 4.294167000000016], [111.44810300000012, 4.293998000000045]], [[111.44580600000012, 4.217423999999994], [111.44586300000003, 4.217380999999989], [111.44592100000006, 4.217423999999994], [111.44592100000006, 4.217593000000136], [111.44586300000003, 4.217637000000082], [111.44580600000012, 4.217593000000136], [111.44580600000012, 4.217423999999994]], [[111.43945400000001, 4.527204000000097], [111.4395110000001, 4.527160000000038], [111.43956900000012, 4.527204000000097], [111.43956900000012, 4.527373000000068], [111.4395110000001, 4.527416000000073], [111.43945400000001, 4.527373000000068], [111.43945400000001, 4.527204000000097]], [[111.449117, 4.293912000000034], [111.44917400000008, 4.293869000000029], [111.44923200000011, 4.293912000000034], [111.44923200000011, 4.294081000000006], [111.44917400000008, 4.294125000000065], [111.449117, 4.294081000000006], [111.449117, 4.293912000000034]], [[111.93046099999992, 4.237090000000023], [111.93051900000012, 4.237047000000018], [111.93057499999998, 4.237090000000023], [111.93057600000003, 4.237258999999995], [111.93051900000012, 4.237303000000111], [111.93046099999992, 4.237258999999995], [111.93046099999992, 4.237090000000023]], [[111.44701200000009, 4.35310400000003], [111.44706800000012, 4.353061000000025], [111.44729399999994, 4.353061000000025], [111.44735100000008, 4.35310400000003], [111.44729399999994, 4.353147000000035], [111.44706800000012, 4.353147000000035], [111.44701200000009, 4.35310400000003]], [[111.4395110000001, 4.433245000000113], [111.43956700000012, 4.433202000000108], [111.43962499999992, 4.433245000000113], [111.43962499999992, 4.433415000000139], [111.43956800000001, 4.433457999999973], [111.4395110000001, 4.433415000000139], [111.4395110000001, 4.433245000000113]], [[111.43859699999996, 4.215561999999977], [111.43865400000004, 4.215520000000026], [111.43871100000001, 4.215561999999977], [111.43871100000001, 4.215732000000003], [111.43865400000004, 4.215776000000062], [111.43859699999996, 4.215732000000003], [111.43859699999996, 4.215561999999977]], [[111.43903600000004, 4.392202000000054], [111.43909299999996, 4.392159000000049], [111.4391500000001, 4.392202000000054], [111.4391500000001, 4.392371000000026], [111.43909299999996, 4.392415000000085], [111.43903600000004, 4.392371000000026], [111.43903600000004, 4.392202000000054]], [[111.44855400000012, 4.293998000000045], [111.44861100000003, 4.293953999999985], [111.44866799999994, 4.293998000000045], [111.44866799999994, 4.294167000000016], [111.44861100000003, 4.294210000000021], [111.44855400000012, 4.294167000000016], [111.44855400000012, 4.293998000000045]], [[111.448329, 4.293998000000045], [111.44838499999997, 4.293953999999985], [111.448443, 4.293998000000045], [111.448443, 4.294167000000016], [111.44838600000008, 4.294210000000021], [111.448329, 4.294167000000016], [111.448329, 4.293998000000045]], [[111.93070999999992, 4.529876000000002], [111.93076800000011, 4.529832000000113], [111.93088100000006, 4.529832000000113], [111.93093800000014, 4.529875000000118], [111.93088100000006, 4.529919000000007], [111.93076800000011, 4.529919000000007], [111.93070999999992, 4.529876000000002]], [[111.93087300000008, 4.480865999999992], [111.9309310000001, 4.480822000000103], [111.93104400000004, 4.480822000000103], [111.93110100000013, 4.480865000000108], [111.93104400000004, 4.480908999999997], [111.9309310000001, 4.480908999999997], [111.93087300000008, 4.480865999999992]], [[111.43870700000002, 4.212085000000059], [111.4387640000001, 4.212042000000054], [111.43887700000005, 4.212042000000054], [111.43893500000007, 4.212085000000059], [111.43887700000005, 4.212129000000118], [111.4387640000001, 4.212129000000118], [111.43870700000002, 4.212085000000059]], [[111.43911300000002, 4.33182400000004], [111.43916999999993, 4.331780000000094], [111.43928300000005, 4.331780000000094], [111.43934100000007, 4.33182400000004], [111.43928300000005, 4.331867000000045], [111.43916999999993, 4.331867000000045], [111.43911300000002, 4.33182400000004]], [[111.93066800000003, 4.315776000000028], [111.93072599999999, 4.315733000000023], [111.93083899999993, 4.315733000000023], [111.93089600000002, 4.315776000000028], [111.93083899999993, 4.315819999999917], [111.93072599999999, 4.315819999999917], [111.93066800000003, 4.315776000000028]], [[111.93049400000001, 4.448221999999987], [111.93055199999998, 4.448178000000041], [111.93066499999992, 4.448178000000041], [111.93072100000012, 4.448221000000046], [111.93066499999992, 4.448264999999992], [111.93055199999998, 4.448264999999992], [111.93049400000001, 4.448221999999987]], [[111.43911400000013, 4.523217999999986], [111.43916999999993, 4.523174999999981], [111.43928300000005, 4.523174999999981], [111.43934100000007, 4.523217999999986], [111.43928300000005, 4.523262000000102], [111.43916999999993, 4.523262000000102], [111.43911400000013, 4.523217999999986]], [[111.43929200000008, 4.537932000000069], [111.43917899999997, 4.537932000000069], [111.439123, 4.537889000000064], [111.43917899999997, 4.537845000000004], [111.43929200000008, 4.537845000000004], [111.4393500000001, 4.537889000000064], [111.43929200000008, 4.537932000000069]], [[111.43905899999999, 4.2367620000001125], [111.43911600000013, 4.236719000000107], [111.43922900000001, 4.236719000000107], [111.43928599999998, 4.2367620000001125], [111.43922900000001, 4.236806000000001], [111.43911600000013, 4.236806000000001], [111.43905899999999, 4.2367620000001125]], [[111.9208900000001, 4.238542999999993], [111.92094700000001, 4.238499000000104], [111.92106000000013, 4.238499000000104], [111.92111700000004, 4.238542000000109], [111.92106000000013, 4.238585999999998], [111.92094700000001, 4.238585999999998], [111.9208900000001, 4.238542999999993]], [[111.43912499999993, 4.352346000000011], [111.43918200000007, 4.352302000000066], [111.43929500000002, 4.352302000000066], [111.4393520000001, 4.352346000000011], [111.43929500000002, 4.3523890000000165], [111.43918200000007, 4.3523890000000165], [111.43912499999993, 4.352346000000011]], [[111.92055200000004, 4.238542999999993], [111.92060900000013, 4.238499000000104], [111.92072200000007, 4.238499000000104], [111.92077899999998, 4.238542999999993], [111.92072200000007, 4.238585999999998], [111.92060900000013, 4.238585999999998], [111.92055200000004, 4.238542999999993]], [[111.93045699999993, 4.23352900000009], [111.93051400000007, 4.23348500000003], [111.93062700000002, 4.23348500000003], [111.9306840000001, 4.23352900000009], [111.93062700000002, 4.233572000000095], [111.93051400000007, 4.233572000000095], [111.93045699999993, 4.23352900000009]], [[111.43907500000006, 4.26398300000011], [111.43913100000009, 4.263940000000105], [111.43924400000003, 4.263940000000105], [111.43930200000005, 4.26398300000011], [111.43924400000003, 4.2640270000000555], [111.43913100000009, 4.2640270000000555], [111.43907500000006, 4.26398300000011]], [[111.93056400000012, 4.50299700000005], [111.93062100000003, 4.502952999999934], [111.93073399999997, 4.502952999999934], [111.93079100000006, 4.50299700000005], [111.93073399999997, 4.503040000000055], [111.93062100000003, 4.503040000000055], [111.93056400000012, 4.50299700000005]], [[111.439121, 4.345053000000007], [111.43917800000008, 4.345009000000118], [111.43929100000003, 4.345009000000118], [111.43934800000011, 4.345052000000123], [111.43929100000003, 4.345096000000012], [111.43917800000008, 4.345096000000012], [111.439121, 4.345053000000007]], [[111.43895000000003, 4.243377000000123], [111.43900699999995, 4.243334000000118], [111.43912000000006, 4.243334000000118], [111.43917699999997, 4.243377000000123], [111.43912000000006, 4.243421000000012], [111.43900699999995, 4.243421000000012], [111.43895000000003, 4.243377000000123]], [[111.43918000000008, 4.446304000000055], [111.43923699999999, 4.4462610000000495], [111.43929500000002, 4.446304000000055], [111.43929500000002, 4.446389000000011], [111.43923699999999, 4.44643300000007], [111.43918000000008, 4.446389000000011], [111.43918000000008, 4.446304000000055]], [[111.930608, 4.4491539999999645], [111.93066600000003, 4.449110999999959], [111.93072300000011, 4.4491539999999645], [111.93072300000011, 4.449239000000091], [111.93066600000003, 4.44928299999998], [111.930608, 4.449239000000091], [111.930608, 4.4491539999999645]], [[111.92664100000007, 4.51953599999996], [111.92669900000004, 4.5194929999999545], [111.92675599999995, 4.51953599999996], [111.92675599999995, 4.519621000000086], [111.92669900000004, 4.519664999999975], [111.92664100000007, 4.519621000000086], [111.92664100000007, 4.51953599999996]], [[111.44537800000006, 4.447912000000088], [111.44543499999997, 4.447868000000142], [111.445493, 4.447912000000088], [111.445493, 4.447996999999987], [111.44543499999997, 4.448039999999992], [111.44537800000006, 4.447996999999987], [111.44537800000006, 4.447912000000088]], [[111.43883900000009, 4.245835999999997], [111.438896, 4.245792999999992], [111.43895400000002, 4.245835999999997], [111.43895400000002, 4.2459210000001235], [111.438896, 4.245965000000012], [111.43883900000009, 4.2459210000001235], [111.43883900000009, 4.245835999999997]], [[111.4388560000001, 4.468776999999989], [111.43891200000007, 4.4687330000001], [111.43902500000002, 4.4687330000001], [111.43908300000004, 4.468776999999989], [111.43902500000002, 4.468819999999994], [111.43891300000001, 4.468819999999994], [111.4388560000001, 4.468776999999989]], [[111.93060700000012, 4.357070000000078], [111.93066400000004, 4.357027000000073], [111.93077699999998, 4.357027000000073], [111.930833, 4.357070000000078], [111.93077699999998, 4.357114000000138], [111.93066400000004, 4.357114000000138], [111.93060700000012, 4.357070000000078]], [[111.43874600000004, 4.28060499999998], [111.43880299999995, 4.280561000000091], [111.43891600000006, 4.280561000000091], [111.43897200000009, 4.280604000000096], [111.43891600000006, 4.280647999999985], [111.43880299999995, 4.280647999999985], [111.43874600000004, 4.28060499999998]], [[111.93017900000007, 4.283047000000067], [111.93023599999998, 4.283004000000062], [111.93034900000009, 4.283004000000062], [111.93040500000012, 4.283047000000067], [111.93034900000009, 4.283091000000013], [111.93023599999998, 4.283091000000013], [111.93017900000007, 4.283047000000067]], [[111.93041900000003, 4.3875110000000745], [111.93047600000011, 4.387466999999958], [111.93058900000005, 4.387466999999958], [111.93064500000008, 4.3875110000000745], [111.93058900000005, 4.38755400000008], [111.93047600000011, 4.38755400000008], [111.93041900000003, 4.3875110000000745]], [[111.43906900000013, 4.448339999999973], [111.43912600000004, 4.448296000000028], [111.43923800000005, 4.448296000000028], [111.43929600000007, 4.448339999999973], [111.43923800000005, 4.448382999999978], [111.43912600000004, 4.448382999999978], [111.43906900000013, 4.448339999999973]], [[111.930522, 4.286862000000099], [111.93057800000003, 4.286819000000094], [111.93069100000014, 4.286819000000094], [111.93074800000005, 4.286862000000099], [111.93069100000014, 4.286905999999988], [111.93057800000003, 4.286905999999988], [111.930522, 4.286862000000099]], [[111.43897700000014, 4.2900169999999775], [111.43903400000005, 4.289973999999972], [111.43914600000011, 4.289973999999972], [111.43920400000007, 4.2900169999999775], [111.43914600000011, 4.290061000000094], [111.43903400000005, 4.290061000000094], [111.43897700000014, 4.2900169999999775]], [[111.93026800000013, 4.356731999999965], [111.93032599999998, 4.3566880000000765], [111.93043799999998, 4.3566880000000765], [111.93049500000006, 4.356731000000082], [111.93043799999998, 4.3567749999999705], [111.93032599999998, 4.3567749999999705], [111.93026800000013, 4.356731999999965]], [[111.439121, 4.344882999999982], [111.43917800000008, 4.3448399999999765], [111.43929000000009, 4.3448399999999765], [111.43934800000011, 4.344882999999982], [111.43929000000009, 4.344927000000041], [111.43917800000008, 4.344927000000041], [111.439121, 4.344882999999982]], [[111.43894600000004, 4.430532000000028], [111.43900300000001, 4.430488000000082], [111.43911500000002, 4.430488000000082], [111.43917300000004, 4.430532000000028], [111.43911500000002, 4.430575000000033], [111.43900300000001, 4.430575000000033], [111.43894600000004, 4.430532000000028]], [[111.93053800000007, 4.392005000000097], [111.9305940000001, 4.3919610000000375], [111.93070700000004, 4.3919610000000375], [111.93076400000012, 4.392004000000043], [111.93070700000004, 4.392048000000102], [111.93059499999998, 4.392048000000102], [111.93053800000007, 4.392005000000097]], [[111.93068299999999, 4.508593000000133], [111.93074100000001, 4.5085500000001275], [111.9307980000001, 4.508593000000133], [111.9307980000001, 4.508678000000089], [111.93074100000001, 4.508721000000094], [111.93068299999999, 4.508678000000089], [111.93068299999999, 4.508593000000133]], [[111.43887999999993, 4.318086000000051], [111.43893700000001, 4.318043000000046], [111.43899500000003, 4.318086000000051], [111.43899500000003, 4.31817100000012], [111.43893700000001, 4.3182140000001255], [111.43887999999993, 4.31817100000012], [111.43887999999993, 4.318086000000051]], [[111.92765500000013, 4.519449999999949], [111.92771299999993, 4.519406999999944], [111.92777000000001, 4.519449999999949], [111.92777000000001, 4.519535000000076], [111.92771299999993, 4.519578000000081], [111.92765500000013, 4.519535000000076], [111.92765500000013, 4.519449999999949]], [[111.43908300000004, 4.472168000000067], [111.43914000000012, 4.472126000000003], [111.43919799999998, 4.472168000000067], [111.43919799999998, 4.472253000000023], [111.43914000000012, 4.472297000000083], [111.43908300000004, 4.472253000000023], [111.43908300000004, 4.472168000000067]], [[111.43884900000006, 4.263559000000043], [111.43890599999997, 4.263517000000093], [111.43896399999994, 4.263559000000043], [111.43896399999994, 4.2636439999999425], [111.43890599999997, 4.263688000000059], [111.43884900000006, 4.2636439999999425], [111.43884900000006, 4.263559000000043]], [[111.43918700000012, 4.263559000000043], [111.43924400000003, 4.263516000000038], [111.43930200000005, 4.263559000000043], [111.43930200000005, 4.2636439999999425], [111.43924400000003, 4.263686999999948], [111.43918700000012, 4.2636439999999425], [111.43918700000012, 4.263559000000043]], [[111.43924099999998, 4.357858000000078], [111.43929800000006, 4.357813999999962], [111.43935600000009, 4.357858000000078], [111.43935600000009, 4.3579429999999775], [111.43929800000006, 4.357985000000099], [111.43924099999998, 4.3579429999999775], [111.43924099999998, 4.357858000000078]], [[111.93048800000003, 4.259899000000075], [111.93054600000005, 4.25985600000007], [111.93060300000013, 4.259897999999964], [111.93060300000013, 4.259983000000091], [111.93054600000005, 4.26002699999998], [111.93048800000003, 4.2599839999999745], [111.93048800000003, 4.259899000000075]], [[111.93048700000014, 4.259136000000012], [111.93054499999994, 4.2590920000000665], [111.93060200000008, 4.259136000000012], [111.93060200000008, 4.259221000000082], [111.93054499999994, 4.259263000000033], [111.93048700000014, 4.259221000000082], [111.93048700000014, 4.259136000000012]], [[111.43945400000001, 4.527543000000094], [111.4395110000001, 4.527500000000089], [111.43956900000012, 4.527543000000094], [111.43956900000012, 4.527627999999993], [111.4395110000001, 4.527670999999998], [111.43945400000001, 4.527627999999993], [111.43945400000001, 4.527543000000094]], [[111.43889100000013, 4.337082000000066], [111.43894800000004, 4.3370380000001205], [111.43900600000006, 4.337082000000066], [111.43900600000006, 4.337167000000136], [111.43894800000004, 4.337209000000087], [111.43889100000013, 4.337167000000136], [111.43889100000013, 4.337082000000066]], [[111.43988000000007, 4.293918000000019], [111.43993699999999, 4.2938740000000735], [111.43999500000001, 4.293918000000019], [111.43999500000001, 4.294003000000089], [111.43993699999999, 4.29404500000004], [111.43988000000007, 4.294003000000089], [111.43988000000007, 4.293918000000019]], [[111.43884800000012, 4.2622870000001285], [111.43890500000003, 4.262245000000007], [111.43896300000006, 4.2622870000001285], [111.43896300000006, 4.262372000000028], [111.43890500000003, 4.262415999999973], [111.43884800000012, 4.262372000000028], [111.43884800000012, 4.2622870000001285]], [[111.93100800000008, 4.540941000000032], [111.93089500000013, 4.540942000000086], [111.93083699999994, 4.540898000000027], [111.93089500000013, 4.540855000000022], [111.93100800000008, 4.540855000000022], [111.9310640000001, 4.540898000000027], [111.93100800000008, 4.540941000000032]], [[111.93089900000012, 4.500707000000091], [111.93095600000004, 4.500664000000086], [111.93106899999998, 4.500663000000031], [111.93112600000006, 4.500707000000091], [111.93106899999998, 4.500750000000096], [111.93095600000004, 4.500750000000096], [111.93089900000012, 4.500707000000091]], [[111.43898999999999, 4.502866999999924], [111.43904600000002, 4.502823000000035], [111.43915800000002, 4.502823000000035], [111.43921600000004, 4.50286600000004], [111.43915800000002, 4.502909999999929], [111.43904600000002, 4.502909999999929], [111.43898999999999, 4.502866999999924]], [[111.93052, 4.285335999999916], [111.93057700000014, 4.285293000000081], [111.93068899999997, 4.285293000000081], [111.93074600000006, 4.285335999999916], [111.93068899999997, 4.285380000000032], [111.93057700000014, 4.285380000000032], [111.93052, 4.285335999999916]], [[111.930522, 4.287033000000008], [111.93057900000008, 4.286989000000119], [111.93069100000014, 4.286989000000119], [111.93074800000005, 4.287032000000124], [111.93069100000014, 4.287076000000013], [111.93057900000008, 4.287076000000013], [111.930522, 4.287033000000008]], [[111.9301000000001, 4.217588000000092], [111.93015700000001, 4.2175450000000865], [111.93027000000012, 4.2175450000000865], [111.93032700000003, 4.217588000000092], [111.93027000000012, 4.217631000000097], [111.93015800000006, 4.2176319999999805], [111.9301000000001, 4.217588000000092]], [[111.93013200000007, 4.244467000000043], [111.93018899999998, 4.244424000000038], [111.9303020000001, 4.244424000000038], [111.93035900000001, 4.244467000000043], [111.9303020000001, 4.244510000000048], [111.9301900000001, 4.244510999999989], [111.93013200000007, 4.244467000000043]], [[111.93046200000003, 4.237684000000002], [111.93046200000003, 4.237597999999991], [111.93051900000012, 4.237554999999986], [111.93057600000003, 4.237597999999991], [111.93057600000003, 4.237683000000061], [111.93051900000012, 4.237727000000007], [111.93046200000003, 4.237684000000002]], [[111.93017799999996, 4.2832180000000335], [111.93023599999998, 4.283174000000088], [111.93034900000009, 4.283174000000088], [111.930406, 4.283217000000093], [111.93034900000009, 4.283260000000098], [111.93023599999998, 4.283260000000098], [111.93017799999996, 4.2832180000000335]], [[111.93041799999992, 4.387342000000103], [111.93047600000011, 4.387298000000044], [111.93058900000005, 4.387298000000044], [111.93064600000014, 4.387341000000049], [111.93058900000005, 4.387384000000054], [111.93047600000011, 4.387384000000054], [111.93041799999992, 4.387342000000103]], [[111.43882300000001, 4.217004000000088], [111.43887999999993, 4.216961000000083], [111.43899199999998, 4.216959999999972], [111.43904999999995, 4.217004000000088], [111.43899199999998, 4.217047000000093], [111.43887999999993, 4.217047000000093], [111.43882300000001, 4.217004000000088]], [[111.93052599999999, 4.291186999999979], [111.93058400000001, 4.291143999999974], [111.93069600000001, 4.291143999999974], [111.93075299999992, 4.291186999999979], [111.93069600000001, 4.291229999999985], [111.93058400000001, 4.291231000000096], [111.93052599999999, 4.291186999999979]], [[111.43907500000006, 4.458346000000063], [111.43913200000003, 4.458303000000058], [111.43924400000003, 4.458303000000058], [111.43930200000005, 4.458346000000063], [111.43924400000003, 4.458389000000068], [111.43913200000003, 4.4583900000000085], [111.43907500000006, 4.458346000000063]], [[111.9306820000001, 4.507915000000025], [111.93074000000013, 4.50787100000008], [111.93079700000004, 4.507915000000025], [111.93079700000004, 4.508000000000095], [111.93074000000013, 4.508042000000046], [111.93068299999999, 4.508000000000095], [111.9306820000001, 4.507915000000025]], [[111.93055300000009, 4.313402000000053], [111.93061100000011, 4.313359999999989], [111.93066700000008, 4.313402000000053], [111.93066800000003, 4.313487000000009], [111.93061100000011, 4.313531000000069], [111.93055300000009, 4.313487000000009], [111.93055300000009, 4.313402000000053]], [[111.93092499999995, 4.521396000000038], [111.93098300000014, 4.521353000000033], [111.931039, 4.521396000000038], [111.93104000000005, 4.521480999999994], [111.93098300000014, 4.521523999999999], [111.93092499999995, 4.521480999999994], [111.93092499999995, 4.521396000000038]], [[111.93046200000003, 4.238022999999998], [111.93052, 4.237979000000053], [111.93057600000003, 4.238022999999998], [111.93057700000014, 4.238108000000068], [111.93052, 4.238150000000019], [111.93046200000003, 4.238108000000068], [111.93046200000003, 4.238022999999998]], [[111.93055599999997, 4.315862000000038], [111.93061399999999, 4.315817999999979], [111.93067000000002, 4.315862000000038], [111.93067100000007, 4.315946999999994], [111.93061399999999, 4.315989000000059], [111.93055599999997, 4.315946999999994], [111.93055599999997, 4.315862000000038]], [[111.93070900000004, 4.528689000000043], [111.930767, 4.528644999999983], [111.93082300000003, 4.528689000000043], [111.93082399999997, 4.5287739999999985], [111.930767, 4.528816000000063], [111.93070900000004, 4.5287739999999985], [111.93070900000004, 4.528689000000043]], [[111.438894, 4.3418300000001295], [111.43895099999997, 4.341787000000124], [111.43900800000006, 4.3418300000001295], [111.43900800000006, 4.3419150000000855], [111.43895099999997, 4.341958999999974], [111.438894, 4.3419150000000855], [111.438894, 4.3418300000001295]], [[111.43884900000006, 4.263305000000003], [111.43890599999997, 4.263261000000057], [111.43896300000006, 4.263305000000003], [111.43896300000006, 4.263390000000072], [111.43890599999997, 4.263433000000077], [111.43884900000006, 4.263390000000072], [111.43884900000006, 4.263305000000003]], [[111.43863500000009, 4.283996000000059], [111.438692, 4.283953999999994], [111.43875000000003, 4.283996000000059], [111.43875000000003, 4.284081000000015], [111.438692, 4.284125000000074], [111.43863599999997, 4.284081000000015], [111.43863599999997, 4.284039000000064], [111.43863599999997, 4.28403400000002], [111.43863500000009, 4.28403000000003], [111.43863500000009, 4.283996000000059]], [[111.93048700000014, 4.258712000000116], [111.93054400000005, 4.258668], [111.93060100000014, 4.258712000000116], [111.93060100000014, 4.2587970000000155], [111.93054499999994, 4.258840000000021], [111.93048700000014, 4.2587970000000155], [111.93048700000014, 4.258712000000116]], [[111.93069600000001, 4.5182590000000005], [111.93075299999992, 4.518215999999995], [111.93081000000001, 4.5182590000000005], [111.93081000000001, 4.518344000000127], [111.93075299999992, 4.518388000000016], [111.93069600000001, 4.518344000000127], [111.93069600000001, 4.5182590000000005]], [[111.439231, 4.339880000000107], [111.43928799999992, 4.339835999999991], [111.43934500000006, 4.339880000000107], [111.43934500000006, 4.3399650000000065], [111.43928799999992, 4.340008000000012], [111.439231, 4.3399650000000065], [111.439231, 4.339880000000107]], [[111.43884900000006, 4.263051000000075], [111.43890599999997, 4.263007000000016], [111.43896300000006, 4.263051000000075], [111.43896300000006, 4.263136000000031], [111.43890599999997, 4.2631790000000365], [111.43884900000006, 4.263136000000031], [111.43884900000006, 4.263051000000075]], [[111.9301000000001, 4.217418000000066], [111.93015700000001, 4.217376000000115], [111.93027000000012, 4.217375000000061], [111.93032700000003, 4.217418000000066], [111.93027000000012, 4.217461000000071], [111.93015700000001, 4.2174620000001255], [111.9301000000001, 4.217418000000066]], [[111.43929200000008, 4.53810100000004], [111.43917899999997, 4.53810100000004], [111.439123, 4.538058000000035], [111.43917899999997, 4.53801500000003], [111.43929200000008, 4.53801500000003], [111.4393500000001, 4.538058000000035], [111.43929200000008, 4.53810100000004]], [[111.43905899999999, 4.236593000000141], [111.43911600000013, 4.236550000000136], [111.43922900000001, 4.236550000000136], [111.43928599999998, 4.236593000000141], [111.43922900000001, 4.236635999999976], [111.43911600000013, 4.236635999999976], [111.43905899999999, 4.236593000000141]], [[111.930563, 4.502828000000079], [111.93062100000003, 4.50278400000002], [111.93073399999997, 4.50278400000002], [111.93079, 4.502827000000025], [111.93073399999997, 4.50287000000003], [111.93062100000003, 4.50287000000003], [111.930563, 4.502828000000079]], [[111.93026800000013, 4.356901000000107], [111.93032599999998, 4.356858000000102], [111.93043900000009, 4.356858000000102], [111.93049500000006, 4.356901000000107], [111.93043900000009, 4.356944000000112], [111.93032599999998, 4.356944000000112], [111.93026800000013, 4.356901000000107]], [[111.93053600000007, 4.2991570000000365], [111.93059300000004, 4.299114999999972], [111.93070599999993, 4.299114000000031], [111.93076300000007, 4.2991570000000365], [111.93070599999993, 4.299200000000042], [111.93059300000004, 4.299200999999982], [111.93053600000007, 4.2991570000000365]], [[111.43909299999996, 4.2956140000000005], [111.43914899999999, 4.295570999999995], [111.4392620000001, 4.295570999999995], [111.43932000000012, 4.2956140000000005], [111.4392620000001, 4.295657000000006], [111.43914899999999, 4.295657000000006], [111.43909299999996, 4.2956140000000005]], [[111.93060700000012, 4.357240000000104], [111.93066400000004, 4.357197000000099], [111.93077699999998, 4.357197000000099], [111.93083400000006, 4.357238999999993], [111.93077699999998, 4.357283000000109], [111.93066400000004, 4.357283000000109], [111.93060700000012, 4.357240000000104]], [[111.43897200000009, 4.47513600000002], [111.439029, 4.47509400000007], [111.43914200000012, 4.47509400000007], [111.43919900000003, 4.47513600000002], [111.43914200000012, 4.47518000000008], [111.439029, 4.47518000000008], [111.43897200000009, 4.47513600000002]], [[111.43911400000013, 4.331994000000066], [111.43916999999993, 4.331949999999949], [111.43928300000005, 4.331949999999949], [111.43934100000007, 4.331994000000066], [111.43928300000005, 4.33203599999996], [111.43916999999993, 4.33203599999996], [111.43911400000013, 4.331994000000066]], [[111.9212270000001, 4.238542000000109], [111.92128500000013, 4.238499000000104], [111.92139800000001, 4.238499000000104], [111.92145400000004, 4.238542000000109], [111.92139800000001, 4.238585000000114], [111.92128500000013, 4.238585000000114], [111.9212270000001, 4.238542000000109]], [[111.44167700000008, 4.475474000000077], [111.44173300000011, 4.475431000000071], [111.44184600000006, 4.475431000000071], [111.44190400000002, 4.475474000000077], [111.44184600000006, 4.475517000000082], [111.44173300000011, 4.475517000000082], [111.44167700000008, 4.475474000000077]], [[111.93052599999999, 4.291356000000121], [111.93058400000001, 4.291314], [111.93069600000001, 4.291314], [111.93075299999992, 4.291356000000121], [111.93069700000012, 4.29140000000001], [111.93058400000001, 4.29140000000001], [111.93052599999999, 4.291356000000121]], [[111.93049400000001, 4.448052000000132], [111.93055199999998, 4.448009000000127], [111.93066400000004, 4.448009000000127], [111.93072100000012, 4.448051000000021], [111.93066499999992, 4.448095000000137], [111.93055199999998, 4.448095000000137], [111.93049400000001, 4.448052000000132]], [[111.43884900000006, 4.262797000000035], [111.43890500000003, 4.262752999999975], [111.43896300000006, 4.26279599999998], [111.43896300000006, 4.26288100000005], [111.43890599999997, 4.262924000000055], [111.43884900000006, 4.2628819999999905], [111.43884900000006, 4.262797000000035]], [[111.93024600000007, 4.429567000000077], [111.93030299999998, 4.429525000000012], [111.93036000000012, 4.429567000000077], [111.93036000000012, 4.429652000000033], [111.93030400000009, 4.429696000000092], [111.93024600000007, 4.429652000000033], [111.93024600000007, 4.429567000000077]], [[111.93062200000008, 4.460091999999918], [111.93068000000011, 4.46004900000014], [111.93073600000014, 4.460091999999918], [111.93073600000014, 4.460177000000044], [111.93068000000011, 4.460220000000049], [111.93062200000008, 4.460177000000044], [111.93062200000008, 4.460091999999918]], [[111.93048900000014, 4.260408000000098], [111.93054600000005, 4.260363999999981], [111.93060300000013, 4.260408000000098], [111.93060300000013, 4.260492999999997], [111.93054699999993, 4.260535000000118], [111.93048900000014, 4.260492999999997], [111.93048900000014, 4.260408000000098]], [[111.446414, 4.2940830000000005], [111.44646999999998, 4.29404100000005], [111.446528, 4.2940830000000005], [111.446528, 4.29416800000007], [111.44647100000009, 4.294212000000016], [111.446414, 4.29416800000007], [111.446414, 4.2940830000000005]], [[111.93053800000007, 4.392598000000135], [111.93059499999998, 4.392555000000129], [111.93065200000012, 4.392598000000135], [111.93065200000012, 4.3926830000000905], [111.93059499999998, 4.392726000000096], [111.93053800000007, 4.3926830000000905], [111.93053800000007, 4.392598000000135]], [[111.43895800000001, 4.256097000000068], [111.43901399999999, 4.256054000000063], [111.43907200000001, 4.256097000000068], [111.43907200000001, 4.256182000000024], [111.43901399999999, 4.256225000000029], [111.43895800000001, 4.256182000000024], [111.43895800000001, 4.256097000000068]], [[111.43906900000013, 4.448170000000118], [111.43912600000004, 4.448127000000113], [111.43923800000005, 4.448127000000113], [111.43929600000007, 4.448170000000118], [111.43923800000005, 4.448213000000123], [111.43912600000004, 4.448213000000123], [111.43906900000013, 4.448170000000118]], [[111.93013200000007, 4.244636000000014], [111.9301900000001, 4.24459400000012], [111.9303020000001, 4.24459400000012], [111.93035900000001, 4.244636000000014], [111.9303020000001, 4.24468000000013], [111.9301900000001, 4.24468000000013], [111.93013200000007, 4.244636000000014]], [[111.43897499999997, 4.286202000000003], [111.439031, 4.286158000000114], [111.43908900000002, 4.286201000000119], [111.43908900000002, 4.286286000000018], [111.43903200000005, 4.286329000000023], [111.43897499999997, 4.286286000000018], [111.43897499999997, 4.286202000000003]], [[111.43911400000013, 4.5230490000000145], [111.43916999999993, 4.523006000000009], [111.43928300000005, 4.523006000000009], [111.43934100000007, 4.5230490000000145], [111.43928300000005, 4.523091000000136], [111.43922700000007, 4.52309200000002], [111.43916999999993, 4.52309200000002], [111.43911400000013, 4.5230490000000145]], [[111.93082500000003, 4.442540000000008], [111.93088300000005, 4.442497000000003], [111.93099500000005, 4.442497000000003], [111.93105100000008, 4.442540000000008], [111.930996, 4.442583000000013], [111.93088300000005, 4.442583000000013], [111.93082500000003, 4.442540000000008]], [[111.43889700000011, 4.346580000000074], [111.43895300000014, 4.346536000000128], [111.43901100000011, 4.346580000000074], [111.43901100000011, 4.346664000000089], [111.43895400000002, 4.3467070000000945], [111.43889700000011, 4.346664000000089], [111.43889700000011, 4.346580000000074]], [[111.93060300000013, 4.354272000000037], [111.93066099999999, 4.354229000000032], [111.93077299999999, 4.354229000000032], [111.93082900000002, 4.354272000000037], [111.93077299999999, 4.354315000000042], [111.93066099999999, 4.354315000000042], [111.93060300000013, 4.354272000000037]], [[111.43907500000006, 4.458176999999921], [111.43913200000003, 4.458133999999916], [111.43924400000003, 4.458133000000032], [111.43930200000005, 4.458176999999921], [111.43924400000003, 4.458219000000042], [111.43913200000003, 4.458219000000042], [111.43907500000006, 4.458176999999921]], [[111.93075000000005, 4.382169000000033], [111.93080800000007, 4.382126000000028], [111.93092000000007, 4.382124999999917], [111.93097699999998, 4.382169000000033], [111.93092000000007, 4.382210999999927], [111.93080800000007, 4.382210999999927], [111.93075000000005, 4.382169000000033]], [[111.93046200000003, 4.238277000000039], [111.93052, 4.238232999999923], [111.93057700000014, 4.238277000000039], [111.93052, 4.238320000000044], [111.93046200000003, 4.238277000000039]], [[111.93048700000014, 4.258965999999987], [111.93054499999994, 4.258922000000041], [111.93060200000008, 4.258965999999987], [111.93054499999994, 4.259008999999992], [111.93048700000014, 4.258965999999987]], [[111.92494900000003, 4.2428619999999455], [111.92500700000005, 4.24281899999994], [111.92506400000013, 4.2428619999999455], [111.92500700000005, 4.242906000000062], [111.92494900000003, 4.2428619999999455]], [[111.43840999999998, 4.2839120000000435], [111.43846700000006, 4.283869000000038], [111.43852500000003, 4.2839120000000435], [111.43846700000006, 4.283955999999989], [111.43840999999998, 4.2839120000000435]], [[111.43888200000009, 4.321818000000064], [111.438939, 4.321774000000005], [111.43899700000003, 4.321818000000064], [111.438939, 4.3218610000000695], [111.43888200000009, 4.321818000000064]], [[111.93055300000009, 4.313657000000035], [111.93061100000011, 4.31361400000003], [111.93066800000003, 4.313657000000035], [111.93061100000011, 4.313700999999924], [111.93055300000009, 4.313657000000035]], [[111.93055300000009, 4.313826000000006], [111.93061100000011, 4.313783000000001], [111.93066800000003, 4.313826000000006], [111.93061100000011, 4.313870000000065], [111.93055300000009, 4.313826000000006]], [[111.93045699999993, 4.234037000000058], [111.93051500000013, 4.233994000000052], [111.93057200000004, 4.234037000000058], [111.93051500000013, 4.234081000000117], [111.93045699999993, 4.234037000000058]], [[111.93092499999995, 4.521735000000035], [111.93098300000014, 4.52169200000003], [111.93104000000005, 4.521735000000035], [111.93098300000014, 4.521778999999924], [111.93092499999995, 4.521735000000035]], [[111.43888200000009, 4.321478000000013], [111.438939, 4.321435000000008], [111.43899700000003, 4.321478000000013], [111.438939, 4.3215220000001295], [111.43888200000009, 4.321478000000013]], [[111.93065000000013, 4.206904000000009], [111.93070799999992, 4.20686000000012], [111.93076500000006, 4.206904000000009], [111.93070799999992, 4.206947000000014], [111.93065000000013, 4.206904000000009]], [[111.93070900000004, 4.528943000000083], [111.930767, 4.528899000000024], [111.93082399999997, 4.528943000000083], [111.930767, 4.5289860000000886], [111.93070900000004, 4.528943000000083]], [[111.93069100000014, 4.425412000000051], [111.93074899999993, 4.425369000000046], [111.93080600000008, 4.425412000000051], [111.93074899999993, 4.425456000000111], [111.93069100000014, 4.425412000000051]], [[111.93069900000006, 4.431941000000052], [111.93075700000009, 4.4318980000000465], [111.930814, 4.431941000000052], [111.93075700000009, 4.4319849999999406], [111.93069900000006, 4.431941000000052]], [[111.93070900000004, 4.440081000000134], [111.930767, 4.440038000000129], [111.93082399999997, 4.440081000000134], [111.930767, 4.44012500000008], [111.93070900000004, 4.440081000000134]], [[111.43932400000006, 4.498626000000058], [111.43938100000003, 4.498583000000053], [111.439439, 4.498626000000058], [111.43938100000003, 4.498669999999947], [111.43932400000006, 4.498626000000058]], [[111.43931800000013, 4.488789000000054], [111.43937500000004, 4.488746000000049], [111.43943300000007, 4.488789000000054], [111.43937500000004, 4.488833], [111.43931800000013, 4.488789000000054]], [[111.93070500000005, 4.5258060000000455], [111.93076300000007, 4.525761999999986], [111.93081999999998, 4.5258060000000455], [111.93076300000007, 4.525849000000051], [111.93070500000005, 4.5258060000000455]], [[111.43930999999998, 4.475306000000046], [111.43936700000006, 4.475263000000041], [111.43942500000009, 4.475306000000046], [111.43936700000006, 4.475350000000105], [111.43930999999998, 4.475306000000046]], [[111.930114, 4.2296289999999885], [111.93017200000003, 4.2295850000001], [111.93022900000011, 4.2296289999999885], [111.93017200000003, 4.229671999999994], [111.930114, 4.2296289999999885]], [[111.43926800000008, 4.404583000000059], [111.439325, 4.404538999999943], [111.43938299999996, 4.404583000000059], [111.439325, 4.404626000000064], [111.43926800000008, 4.404583000000059]], [[111.93049100000013, 4.4459320000000275], [111.9305490000001, 4.445889000000022], [111.93060600000001, 4.4459320000000275], [111.9305490000001, 4.445975999999916], [111.93049100000013, 4.4459320000000275]], [[111.93025499999993, 4.34638700000005], [111.93031300000013, 4.346344000000045], [111.93037000000004, 4.34638700000005], [111.93031300000013, 4.3464309999999955], [111.93025499999993, 4.34638700000005]], [[111.93027400000011, 4.361650000000111], [111.93033200000008, 4.361606000000052], [111.93038899999999, 4.361650000000111], [111.93033200000008, 4.361693000000116], [111.93027400000011, 4.361650000000111]], [[111.93035500000002, 4.427108999999916], [111.93041300000004, 4.427065000000027], [111.93046999999996, 4.427108999999916], [111.93041300000004, 4.427151999999921], [111.93035500000002, 4.427108999999916]], [[111.93022099999996, 4.224965000000111], [111.93027899999998, 4.224920999999995], [111.93033600000007, 4.224965000000111], [111.93027899999998, 4.225008000000116], [111.93022099999996, 4.224965000000111]], [[111.43922900000001, 4.528052000000116], [111.43928599999998, 4.528008], [111.43934399999995, 4.528052000000116], [111.43928599999998, 4.528095000000121], [111.43922900000001, 4.528052000000116]], [[111.43922300000008, 4.517706000000089], [111.43928, 4.517663000000084], [111.43933800000002, 4.517706000000089], [111.43928, 4.517749999999978], [111.43922300000008, 4.517706000000089]], [[111.43921499999993, 4.504732000000047], [111.43927200000002, 4.504687999999987], [111.43933000000004, 4.504732000000047], [111.43927200000002, 4.504775000000052], [111.43921499999993, 4.504732000000047]], [[111.93031000000008, 4.298988000000122], [111.93036800000004, 4.298945000000117], [111.93042499999996, 4.298988000000122], [111.93036800000004, 4.299032000000011], [111.93031000000008, 4.298988000000122]], [[111.43915800000002, 4.409077000000082], [111.43921499999993, 4.4090340000000765], [111.43927300000013, 4.409077000000082], [111.43921499999993, 4.409121000000027], [111.43915800000002, 4.409077000000082]], [[111.43912400000005, 4.350309999999922], [111.43918099999996, 4.350266999999917], [111.43923899999999, 4.350309999999922], [111.43918099999996, 4.3503540000000385], [111.43912400000005, 4.350309999999922]], [[111.93049700000006, 4.359953000000019], [111.93055500000008, 4.3599100000000135], [111.930612, 4.359953000000019], [111.93055500000008, 4.359997000000135], [111.93049700000006, 4.359953000000019]], [[111.93060400000002, 4.534879000000103], [111.93066200000004, 4.534834999999987], [111.93071899999995, 4.534879000000103], [111.93066200000004, 4.534922000000108], [111.93060400000002, 4.534879000000103]], [[111.93055000000004, 4.402688000000126], [111.930608, 4.4026450000001205], [111.93066499999992, 4.402688000000126], [111.930608, 4.4027320000000145], [111.93055000000004, 4.402688000000126]], [[111.93055000000004, 4.402857999999981], [111.930608, 4.4028149999999755], [111.93066499999992, 4.402857999999981], [111.930608, 4.40290200000004], [111.93055000000004, 4.402857999999981]], [[111.43907700000005, 4.268902000000139], [111.43913399999997, 4.26885800000008], [111.43919199999999, 4.268902000000139], [111.43913399999997, 4.268944999999974], [111.43907700000005, 4.268902000000139]], [[111.43882800000006, 4.226756000000137], [111.43888499999997, 4.226713000000132], [111.438943, 4.226756000000137], [111.43888499999997, 4.2268000000000825], [111.43882800000006, 4.226756000000137]], [[111.43905600000011, 4.231844000000137], [111.43911300000002, 4.231800000000021], [111.43917100000004, 4.231844000000137], [111.43911300000002, 4.231886999999972], [111.43905600000011, 4.231844000000137]], [[111.43904500000008, 4.212085000000059], [111.43910199999999, 4.212042000000054], [111.43916000000002, 4.212085000000059], [111.43910199999999, 4.212129000000118], [111.43904500000008, 4.212085000000059]], [[111.93084000000005, 4.541577000000075], [111.93078300000013, 4.54162000000008], [111.93072500000011, 4.541577000000075], [111.93078300000013, 4.541533000000129], [111.93084000000005, 4.541577000000075]], [[111.43883000000005, 4.230318000000011], [111.43888699999997, 4.230274000000065], [111.43894499999999, 4.230318000000011], [111.43888699999997, 4.230361000000016], [111.43883000000005, 4.230318000000011]], [[111.930608, 4.449408000000062], [111.93066600000003, 4.449365000000057], [111.93072300000011, 4.449408000000062], [111.93066600000003, 4.449452000000122], [111.930608, 4.449408000000062]], [[111.43890700000003, 4.36464200000006], [111.43896399999994, 4.364597999999944], [111.43902200000014, 4.36464200000006], [111.43896399999994, 4.364685000000065], [111.43890700000003, 4.36464200000006]], [[111.43882100000002, 4.213781999999924], [111.43887799999993, 4.213738000000035], [111.43893600000013, 4.213781999999924], [111.43887799999993, 4.213824999999929], [111.43882100000002, 4.213781999999924]], [[111.93065400000012, 4.304160000000081], [111.93071200000009, 4.304117000000076], [111.930769, 4.304160000000081], [111.93071200000009, 4.304204000000027], [111.93065400000012, 4.304160000000081]], [[111.43885499999999, 4.274668000000133], [111.43891200000007, 4.274625000000128], [111.4389700000001, 4.274668000000133], [111.43891200000007, 4.274712000000022], [111.43885499999999, 4.274668000000133]], [[111.43903600000004, 4.393220000000099], [111.43909299999996, 4.3931760000000395], [111.43915099999998, 4.393220000000099], [111.43909299999996, 4.393263000000104], [111.43903600000004, 4.393220000000099]], [[111.43903600000004, 4.392795000000092], [111.43909299999996, 4.392752000000087], [111.43915099999998, 4.392795000000092], [111.43909299999996, 4.392839000000038], [111.43903600000004, 4.392795000000092]], [[111.43903600000004, 4.392541000000051], [111.43909299999996, 4.392498000000046], [111.43915099999998, 4.392541000000051], [111.43909299999996, 4.39258499999994], [111.43903600000004, 4.392541000000051]], [[111.43895700000007, 4.255927000000042], [111.43901399999999, 4.255884000000037], [111.43907200000001, 4.255927000000042], [111.43901399999999, 4.255970999999988], [111.43895700000007, 4.255927000000042]], [[111.43931800000013, 4.4886200000001395], [111.43937500000004, 4.488576000000023], [111.43943300000007, 4.4886200000001395], [111.43937500000004, 4.488662999999917], [111.43931800000013, 4.4886200000001395]], [[111.43918900000011, 4.460636000000022], [111.43924600000003, 4.4605920000000765], [111.43930300000011, 4.460636000000022], [111.43924600000003, 4.460679000000027], [111.43918900000011, 4.460636000000022]], [[111.43884800000012, 4.261185000000069], [111.43890500000003, 4.2611420000000635], [111.43896199999995, 4.261185000000069], [111.43890500000003, 4.2612289999999575], [111.43884800000012, 4.261185000000069]], [[111.43893700000001, 4.21895399999994], [111.43899300000004, 4.218910999999935], [111.43905100000006, 4.21895399999994], [111.43899300000004, 4.218998000000056], [111.43893700000001, 4.21895399999994]], [[111.438829, 4.2270950000001335], [111.43888499999997, 4.227052000000128], [111.438943, 4.2270950000001335], [111.43888499999997, 4.227139000000022], [111.438829, 4.2270950000001335]], [[111.93066099999999, 4.309332000000097], [111.93071800000007, 4.309289000000092], [111.93077499999998, 4.309332000000097], [111.93071800000007, 4.309376000000043], [111.93066099999999, 4.309332000000097]], [[111.43883800000003, 4.438503000000139], [111.43889500000012, 4.43845900000008], [111.43895200000003, 4.438503000000139], [111.43889500000012, 4.438545999999974], [111.43883800000003, 4.438503000000139]], [[111.43886500000013, 4.484040999999991], [111.43892200000005, 4.483997000000045], [111.43897900000013, 4.484040999999991], [111.43892200000005, 4.484083999999996], [111.43886500000013, 4.484040999999991]], [[111.43887900000004, 4.507446000000073], [111.43893600000013, 4.507402000000013], [111.43899300000004, 4.507446000000073], [111.43893600000013, 4.507489000000078], [111.43887900000004, 4.507446000000073]], [[111.43908300000004, 4.471659999999986], [111.43914000000012, 4.471616000000097], [111.43919700000004, 4.471659999999986], [111.43914000000012, 4.471702999999991], [111.43908300000004, 4.471659999999986]], [[111.43894600000004, 4.430870999999968], [111.43900300000001, 4.430827999999963], [111.4390600000001, 4.430870999999968], [111.43900300000001, 4.430915000000084], [111.43894600000004, 4.430870999999968]], [[111.43887599999994, 4.31045400000005], [111.43893300000008, 4.310411000000045], [111.43898999999999, 4.31045400000005], [111.43893300000008, 4.310497999999939], [111.43887599999994, 4.31045400000005]], [[111.43863599999997, 4.28425100000004], [111.438692, 4.284208000000035], [111.43875000000003, 4.28425100000004], [111.438692, 4.284294999999929], [111.43863599999997, 4.28425100000004]], [[111.93062700000002, 4.281182000000115], [111.9306840000001, 4.281138000000055], [111.93074100000001, 4.281182000000115], [111.9306840000001, 4.28122500000012], [111.93062700000002, 4.281182000000115]], [[111.43890599999997, 4.362437000000057], [111.43896300000006, 4.362394000000052], [111.43902000000014, 4.362437000000057], [111.43896300000006, 4.362481000000116], [111.43890599999997, 4.362437000000057]], [[111.43890599999997, 4.362267000000031], [111.43896300000006, 4.362224000000026], [111.43902000000014, 4.362267000000031], [111.43896300000006, 4.362311000000091], [111.43890599999997, 4.362267000000031]], [[111.43903600000004, 4.391863000000114], [111.43909200000007, 4.391818999999998], [111.4391500000001, 4.391863000000114], [111.43909299999996, 4.3919060000001195], [111.43903600000004, 4.391863000000114]], [[111.93056400000012, 4.413542000000064], [111.93062100000003, 4.413497999999947], [111.93067800000011, 4.413542000000064], [111.93062100000003, 4.413585000000069], [111.93056400000012, 4.413542000000064]], [[111.9310640000001, 4.540729000000056], [111.93100699999997, 4.540772000000061], [111.93095000000005, 4.540729000000056], [111.93100699999997, 4.540684999999996], [111.9310640000001, 4.540729000000056]], [[111.43875900000006, 4.302568000000008], [111.43881500000009, 4.302524000000119], [111.43887300000006, 4.302568000000008], [111.43881599999997, 4.302611000000013], [111.43875900000006, 4.302568000000008]], [[111.93057600000003, 4.332311000000004], [111.93063400000005, 4.3322670000000585], [111.93069000000003, 4.332311000000004], [111.93063400000005, 4.332354000000009], [111.93057600000003, 4.332311000000004]], [[111.93049000000002, 4.261680000000013], [111.93054800000004, 4.261636000000067], [111.93060400000002, 4.261679000000072], [111.93054800000004, 4.261723000000018], [111.93049000000002, 4.261680000000013]], [[111.93048800000003, 4.25972900000005], [111.93054600000005, 4.259686000000045], [111.93060200000008, 4.25972900000005], [111.93054600000005, 4.259773000000109], [111.93048800000003, 4.25972900000005]], [[111.93045600000005, 4.233105000000023], [111.93051400000007, 4.233061000000134], [111.93057000000005, 4.233104000000139], [111.93051400000007, 4.233148000000028], [111.93045600000005, 4.233105000000023]], [[111.93069600000001, 4.518852999999979], [111.93075400000004, 4.518809000000033], [111.93081000000001, 4.518852000000038], [111.93075400000004, 4.518895999999984], [111.93069600000001, 4.518852999999979]], [[111.93069200000002, 4.515630999999985], [111.93075000000005, 4.515587000000096], [111.93080600000008, 4.515630000000101], [111.93075000000005, 4.51567399999999], [111.93069200000002, 4.515630999999985]], [[111.93052700000004, 4.473404000000016], [111.93058400000001, 4.473361000000011], [111.9306410000001, 4.473404000000016], [111.93058400000001, 4.473448000000133], [111.93052700000004, 4.473404000000016]], [[111.93012500000003, 4.238871000000131], [111.930183, 4.238827000000072], [111.93023900000003, 4.238871000000131], [111.930183, 4.238914000000136], [111.93012500000003, 4.238871000000131]], [[111.43920400000007, 4.293324999999982], [111.43926100000004, 4.293281000000036], [111.43931800000013, 4.293324999999982], [111.43926100000004, 4.293367999999987], [111.43920400000007, 4.293324999999982]], [[111.43894800000004, 4.434348000000057], [111.43900499999995, 4.434303999999997], [111.43906200000009, 4.434348000000057], [111.43900499999995, 4.434391000000062], [111.43894800000004, 4.434348000000057]], [[111.43883900000009, 4.246429999999975], [111.438896, 4.2463860000000295], [111.43895300000014, 4.246429999999975], [111.438896, 4.24647299999998], [111.43883900000009, 4.246429999999975]], [[111.43893400000013, 4.213442000000043], [111.43898999999999, 4.213399000000038], [111.43904799999996, 4.213442000000043], [111.43898999999999, 4.213485999999989], [111.43893400000013, 4.213442000000043]], [[111.43895500000008, 4.251009000000124], [111.43901100000011, 4.250965000000008], [111.43906900000013, 4.251009000000124], [111.43901100000011, 4.251052000000129], [111.43895500000008, 4.251009000000124]], [[111.93062500000002, 4.27982500000013], [111.93068299999999, 4.279781000000014], [111.93073900000002, 4.27982500000013], [111.93068299999999, 4.2798680000001355], [111.93062500000002, 4.27982500000013]], [[111.43906200000009, 4.241002000000094], [111.43911800000006, 4.240959000000089], [111.43917600000009, 4.241002000000094], [111.43911800000006, 4.241045999999983], [111.43906200000009, 4.241002000000094]], [[111.93068299999999, 4.508169000000066], [111.93074000000013, 4.50812499999995], [111.93079700000004, 4.508169000000066], [111.93074100000001, 4.508212000000071], [111.93068299999999, 4.508169000000066]], [[111.93092499999995, 4.521227000000124], [111.93098200000003, 4.521183000000008], [111.931039, 4.521227000000124], [111.93098200000003, 4.521270000000129], [111.93092499999995, 4.521227000000124]], [[111.930496, 4.266172999999981], [111.93055300000009, 4.2661299999999756], [111.93061, 4.266172999999981], [111.93055399999997, 4.26621700000004], [111.930496, 4.266172999999981]], [[111.43912000000006, 4.342509000000007], [111.43917600000009, 4.342465000000118], [111.43923400000011, 4.342509000000007], [111.43917600000009, 4.342552000000012], [111.43912000000006, 4.342509000000007]], [[111.43907999999999, 4.27280300000001], [111.43913599999996, 4.272759000000065], [111.43919399999999, 4.27280300000001], [111.43913599999996, 4.2728460000000155], [111.43907999999999, 4.27280300000001]], [[111.43892700000009, 4.398053000000118], [111.43898300000012, 4.398010000000113], [111.43904099999992, 4.398053000000118], [111.43898300000012, 4.398097000000064], [111.43892700000009, 4.398053000000118]], [[111.43910900000003, 4.323428999999976], [111.43916500000006, 4.323385000000087], [111.43922300000008, 4.323428999999976], [111.43916500000006, 4.323471999999981], [111.43910900000003, 4.323428999999976]], [[111.93058900000005, 4.52275300000008], [111.93064600000014, 4.522710000000075], [111.93070300000005, 4.52275300000008], [111.93064600000014, 4.522797000000139], [111.93058900000005, 4.52275300000008]], [[111.93027400000011, 4.3614800000000855], [111.93033200000008, 4.361436000000026], [111.93038800000011, 4.3614800000000855], [111.93033200000008, 4.361523000000091], [111.93027400000011, 4.3614800000000855]], [[111.43883000000005, 4.229046000000096], [111.43888600000008, 4.22900199999998], [111.4389440000001, 4.229046000000096], [111.43888600000008, 4.229089000000101], [111.43883000000005, 4.229046000000096]], [[111.43884000000003, 4.246854000000042], [111.438896, 4.246809999999925], [111.43895400000002, 4.246854000000042], [111.438896, 4.246897000000047], [111.43884000000003, 4.246854000000042]], [[111.43884100000008, 4.248718999999994], [111.43889700000011, 4.248675999999989], [111.43895500000008, 4.248718999999994], [111.438898, 4.248763000000054], [111.43884100000008, 4.248718999999994]], [[111.93053900000001, 4.301785999999993], [111.9305960000001, 4.301742000000047], [111.930653, 4.301785999999993], [111.93059699999998, 4.301828999999998], [111.93053900000001, 4.301785999999993]], [[111.9305510000001, 4.403027000000122], [111.930608, 4.402984000000117], [111.93066499999992, 4.403027000000122], [111.930608, 4.403071000000011], [111.9305510000001, 4.403027000000122]], [[111.93050399999993, 4.365380000000016], [111.93056200000012, 4.365336000000127], [111.93061799999998, 4.365380000000016], [111.93056200000012, 4.365423000000021], [111.93050399999993, 4.365380000000016]], [[111.43910199999999, 4.311133000000098], [111.43915800000002, 4.311088999999981], [111.43921600000004, 4.311133000000098], [111.43915800000002, 4.311176000000103], [111.43910199999999, 4.311133000000098]], [[111.93059499999998, 4.254811000000075], [111.93065200000012, 4.25476800000007], [111.93070900000004, 4.254811000000075], [111.93065200000012, 4.2548550000000205], [111.93059499999998, 4.254811000000075]], [[111.93053600000007, 4.205208000000027], [111.93059300000004, 4.205164000000082], [111.93065000000013, 4.205208000000027], [111.93059300000004, 4.2052510000000325], [111.93053600000007, 4.205208000000027]], [[111.93098600000002, 4.480696000000137], [111.93104400000004, 4.480653000000132], [111.93110000000007, 4.480696000000137], [111.93104400000004, 4.480740000000026], [111.93098600000002, 4.480696000000137]], [[111.93031000000008, 4.204869000000031], [111.93036800000004, 4.204825000000142], [111.93042400000007, 4.204869000000031], [111.93036800000004, 4.204912000000036], [111.93031000000008, 4.204869000000031]], [[111.930771, 4.488667000000078], [111.93082800000008, 4.488623000000018], [111.93088500000005, 4.488667000000078], [111.93082800000008, 4.488710000000083], [111.930771, 4.488667000000078]], [[111.43917899999997, 4.248550000000023], [111.439235, 4.248506000000134], [111.43929300000002, 4.248550000000023], [111.439235, 4.248593000000028], [111.43917899999997, 4.248550000000023]], [[111.43918200000007, 4.254401000000087], [111.43923899999999, 4.254358000000082], [111.43929600000007, 4.254401000000087], [111.43923899999999, 4.254444999999976], [111.43918200000007, 4.254401000000087]], [[111.93033300000002, 4.3174730000001205], [111.9303900000001, 4.317429000000004], [111.93044700000002, 4.3174730000001205], [111.9303900000001, 4.317516000000126], [111.93033300000002, 4.3174730000001205]], [[111.43919199999999, 4.2715310000000954], [111.43924800000002, 4.271486999999979], [111.43930599999999, 4.2715310000000954], [111.43924800000002, 4.271574000000101], [111.43919199999999, 4.2715310000000954]], [[111.43928300000005, 4.428496000000109], [111.43933900000007, 4.428453000000104], [111.4393970000001, 4.428496000000109], [111.43933900000007, 4.428540000000055], [111.43928300000005, 4.428496000000109]], [[111.93069600000001, 4.518513000000098], [111.93075400000004, 4.518470000000093], [111.93081000000001, 4.518513000000098], [111.93075400000004, 4.518556999999987], [111.93069600000001, 4.518513000000098]], [[111.43988099999996, 4.294511000000057], [111.43993699999999, 4.294468000000052], [111.43999500000001, 4.294511000000057], [111.43993699999999, 4.294555000000116], [111.43988099999996, 4.294511000000057]], [[111.93057099999999, 4.327902000000051], [111.93062800000007, 4.327859000000046], [111.93068499999998, 4.327902000000051], [111.93062800000007, 4.32794599999994], [111.93057099999999, 4.327902000000051]], [[111.44857900000005, 4.522958000000131], [111.44863500000008, 4.5229150000001255], [111.44869300000005, 4.522958000000131], [111.44863500000008, 4.523002000000076], [111.44857900000005, 4.522958000000131]], [[111.93048800000003, 4.259390000000053], [111.93054499999994, 4.259347000000048], [111.93060200000008, 4.259390000000053], [111.93054499999994, 4.259433999999942], [111.93048800000003, 4.259390000000053]], [[111.93047600000011, 4.249300000000119], [111.93053300000003, 4.249256000000003], [111.93058999999994, 4.249300000000119], [111.93053300000003, 4.249343000000124], [111.93047600000011, 4.249300000000119]], [[111.930114, 4.2294590000001335], [111.93017200000003, 4.229415000000074], [111.930228, 4.2294590000001335], [111.93017200000003, 4.229502000000139], [111.930114, 4.2294590000001335]], [[111.93023799999997, 4.3319720000000075], [111.93029500000006, 4.331929000000002], [111.93035200000014, 4.3319720000000075], [111.93029500000006, 4.332016000000124], [111.93023799999997, 4.3319720000000075]], [[111.93023799999997, 4.332142000000033], [111.93029599999994, 4.332099000000028], [111.93035200000014, 4.332142000000033], [111.93029599999994, 4.332185999999979], [111.93023799999997, 4.332142000000033]], [[111.93025600000004, 4.346556000000021], [111.93031300000013, 4.346513000000016], [111.93037000000004, 4.346556000000021], [111.93031300000013, 4.34660000000008], [111.93025600000004, 4.346556000000021]], [[111.93029599999994, 4.287201999999979], [111.93035400000014, 4.2871580000000336], [111.93041, 4.287201999999979], [111.93035400000014, 4.287244999999984], [111.93029599999994, 4.287201999999979]], [[111.9306840000001, 4.508847000000003], [111.93074100000001, 4.508803999999998], [111.9307980000001, 4.508847000000003], [111.93074100000001, 4.508891000000119], [111.9306840000001, 4.508847000000003]], [[111.93028800000002, 4.373266000000058], [111.93034599999999, 4.373223000000053], [111.93040300000013, 4.373266000000058], [111.93034599999999, 4.373309000000063], [111.93028800000002, 4.373266000000058]], [[111.43918700000012, 4.263813999999968], [111.43924400000003, 4.263770999999963], [111.43930200000005, 4.263813999999968], [111.43924400000003, 4.263856999999973], [111.43918700000012, 4.263813999999968]], [[111.43884800000012, 4.262117999999987], [111.43890500000003, 4.262074999999982], [111.43896300000006, 4.262117999999987], [111.43890500000003, 4.262160999999992], [111.43884800000012, 4.262117999999987]], [[111.43924099999998, 4.357688000000053], [111.43929800000006, 4.357645000000048], [111.43935600000009, 4.357688000000053], [111.43929800000006, 4.357731000000058], [111.43924099999998, 4.357688000000053]], [[111.43930999999998, 4.47513600000002], [111.43936700000006, 4.47509400000007], [111.43942500000009, 4.47513600000002], [111.43936700000006, 4.47518000000008], [111.43930999999998, 4.47513600000002]], [[111.43932400000006, 4.498456000000033], [111.43938100000003, 4.498414000000082], [111.439439, 4.498456000000033], [111.43938100000003, 4.498500000000092], [111.43932400000006, 4.498456000000033]], [[111.93013700000012, 4.248961000000122], [111.93019500000014, 4.248918000000117], [111.93025200000005, 4.248961000000122], [111.93019500000014, 4.249004000000127], [111.93013700000012, 4.248961000000122]], [[111.93013700000012, 4.249130999999977], [111.93019500000014, 4.249087999999972], [111.93025200000005, 4.249130999999977], [111.93019500000014, 4.249173999999982], [111.93013700000012, 4.249130999999977]], [[111.93028800000002, 4.373096000000032], [111.93034599999999, 4.373053000000027], [111.93040300000013, 4.373096000000032], [111.93034599999999, 4.373139000000037], [111.93028800000002, 4.373096000000032]], [[111.93029599999994, 4.287372000000005], [111.93035400000014, 4.287329], [111.93041100000005, 4.287372000000005], [111.93035400000014, 4.28741500000001], [111.93029599999994, 4.287372000000005]], [[111.93042800000006, 4.3951430000000755], [111.93048600000003, 4.39509900000013], [111.93054299999994, 4.395142000000135], [111.93048600000003, 4.39518500000014], [111.93042800000006, 4.3951430000000755]], [[111.93049100000013, 4.445762000000002], [111.9305490000001, 4.445720000000051], [111.93060600000001, 4.445762000000002], [111.9305490000001, 4.445806000000061], [111.93049100000013, 4.445762000000002]], [[111.93047800000011, 4.344521999999927], [111.93053600000007, 4.344478000000038], [111.93059300000004, 4.344521999999927], [111.93053600000007, 4.344564000000048], [111.93047800000011, 4.344521999999927]], [[111.93065400000012, 4.485614999999996], [111.93071200000009, 4.485571000000107], [111.930769, 4.485614999999996], [111.93071200000009, 4.485657000000117], [111.93065400000012, 4.485614999999996]], [[111.93068299999999, 4.508423000000107], [111.93074100000001, 4.508380999999986], [111.9307980000001, 4.508423000000107], [111.93074100000001, 4.508466999999996], [111.93068299999999, 4.508423000000107]], [[111.93045699999993, 4.234207000000083], [111.93051500000013, 4.234164000000078], [111.93057200000004, 4.234207000000083], [111.93051500000013, 4.234250000000088], [111.93045699999993, 4.234207000000083]], [[111.93046099999992, 4.23742900000002], [111.93051900000012, 4.237386000000015], [111.93057600000003, 4.23742900000002], [111.93051900000012, 4.237472000000025], [111.93046099999992, 4.23742900000002]], [[111.93055700000008, 4.316964000000098], [111.93061500000005, 4.316921000000093], [111.93067199999996, 4.316964000000098], [111.93061500000005, 4.317007000000103], [111.93055700000008, 4.316964000000098]], [[111.93057600000003, 4.332565000000045], [111.93063400000005, 4.332522999999924], [111.93069100000014, 4.332565000000045], [111.93063400000005, 4.332608999999934], [111.93057600000003, 4.332565000000045]], [[111.93084000000005, 4.541407000000049], [111.93078300000013, 4.541450000000054], [111.93072500000011, 4.541408000000104], [111.93078300000013, 4.541364000000044], [111.93084000000005, 4.541407000000049]], [[111.93073800000013, 4.3727570000000355], [111.93079599999993, 4.37271400000003], [111.93085300000001, 4.3727570000000355], [111.93079599999993, 4.372800000000041], [111.93073800000013, 4.3727570000000355]], [[111.43911800000006, 4.530935000000056], [111.43917500000003, 4.530892000000051], [111.439233, 4.530935000000056], [111.43917500000003, 4.5309780000000615], [111.43911800000006, 4.530935000000056]], [[111.43909000000008, 4.4843799999999305], [111.43914699999999, 4.484336999999925], [111.43920500000002, 4.4843799999999305], [111.43914699999999, 4.484422999999936], [111.43909000000008, 4.4843799999999305]], [[111.43922900000001, 4.528222000000142], [111.43928599999998, 4.528178000000025], [111.43934399999995, 4.528222000000142], [111.43928599999998, 4.528264000000036], [111.43922900000001, 4.528222000000142]], [[111.43910100000011, 4.310963000000072], [111.43915800000002, 4.310920000000067], [111.43921600000004, 4.310963000000072], [111.43915800000002, 4.311006000000077], [111.43910100000011, 4.310963000000072]], [[111.43904500000008, 4.2119160000000875], [111.43910199999999, 4.211873000000082], [111.43916000000002, 4.2119160000000875], [111.43910199999999, 4.211959000000093], [111.43904500000008, 4.2119160000000875]], [[111.43883900000009, 4.246090000000038], [111.438896, 4.246047999999973], [111.43895400000002, 4.246090000000038], [111.438896, 4.246133999999984], [111.43883900000009, 4.246090000000038]], [[111.43882800000006, 4.226925000000108], [111.43888499999997, 4.226882999999987], [111.438943, 4.226925000000108], [111.43888499999997, 4.226968999999997], [111.43882800000006, 4.226925000000108]], [[111.43888499999997, 4.326481999999999], [111.43894200000011, 4.3264389999999935], [111.43900000000008, 4.326481999999999], [111.43894200000011, 4.326525000000004], [111.43888499999997, 4.326481999999999]], [[111.43881800000014, 4.2084389999999985], [111.43887500000005, 4.208395999999993], [111.43893300000008, 4.2084389999999985], [111.43887500000005, 4.208482000000004], [111.43881800000014, 4.2084389999999985]], [[111.43894800000004, 4.434518000000139], [111.43900499999995, 4.434474000000023], [111.43906299999998, 4.434518000000139], [111.43900499999995, 4.434560000000033], [111.43894800000004, 4.434518000000139]], [[111.43894800000004, 4.434687000000054], [111.43900499999995, 4.434644000000048], [111.43906299999998, 4.434687000000054], [111.43900499999995, 4.434730000000059], [111.43894800000004, 4.434687000000054]], [[111.43883299999993, 4.430701000000113], [111.43889000000007, 4.430659000000048], [111.43894800000004, 4.430701000000113], [111.43889000000007, 4.4307450000000586], [111.43883299999993, 4.430701000000113]], [[111.43877099999997, 4.515926000000093], [111.43882800000006, 4.515883000000088], [111.43888600000008, 4.515926000000093], [111.43882800000006, 4.515969000000098], [111.43877099999997, 4.515926000000093]], [[111.93050100000005, 4.2694810000000984], [111.93055700000008, 4.269437000000039], [111.93061399999999, 4.269480000000044], [111.93055800000013, 4.269524000000104], [111.93050100000005, 4.2694810000000984]], [[111.93053900000001, 4.301617000000022], [111.9305960000001, 4.301573000000133], [111.93065200000012, 4.301617000000022], [111.9305960000001, 4.301660000000027], [111.93053900000001, 4.301617000000022]], [[111.93060700000012, 4.3574100000001295], [111.93066400000004, 4.35736600000007], [111.93072000000006, 4.3574100000001295], [111.93066499999992, 4.357453000000135], [111.93060700000012, 4.3574100000001295]], [[111.93012599999992, 4.238702000000046], [111.930183, 4.2386580000001], [111.93023900000003, 4.2387010000001055], [111.930183, 4.238745000000051], [111.93012599999992, 4.238702000000046]], [[111.93070100000006, 4.432281000000103], [111.93075700000009, 4.432237000000043], [111.930814, 4.432280000000048], [111.93075700000009, 4.432324000000108], [111.93070100000006, 4.432281000000103]], [[111.43907900000005, 4.464537000000007], [111.43913500000008, 4.464493000000118], [111.43919199999999, 4.464537000000007], [111.43913500000008, 4.464580000000012], [111.43907900000005, 4.464537000000007]], [[111.43881900000002, 4.208185000000128], [111.43887500000005, 4.208141000000012], [111.43893199999997, 4.208184000000017], [111.43887500000005, 4.208228000000133], [111.43881900000002, 4.208185000000128]], [[111.93089600000002, 4.498503000000028], [111.93095299999999, 4.498459000000082], [111.93100899999996, 4.498503000000028], [111.93095400000004, 4.498546000000033], [111.93089600000002, 4.498503000000028]], [[111.43882000000013, 4.209455999999932], [111.43887500000005, 4.209412999999927], [111.43893300000008, 4.209455999999932], [111.43887500000005, 4.209500000000048], [111.43882000000013, 4.209455999999932]], [[111.438829, 4.227435000000014], [111.43888499999997, 4.227391000000125], [111.43894200000011, 4.227435000000014], [111.43888600000008, 4.227478000000019], [111.438829, 4.227435000000014]], [[111.93051700000012, 4.465433999999959], [111.93057400000004, 4.465390999999954], [111.93063000000006, 4.465433999999959], [111.93057400000004, 4.4654780000000756], [111.93051700000012, 4.465433999999959]], [[111.43928700000004, 4.434348000000057], [111.43934300000006, 4.434303999999997], [111.43939999999998, 4.4343470000000025], [111.43934300000006, 4.434391000000062], [111.43928700000004, 4.434348000000057]], [[111.439231, 4.340304000000003], [111.43928799999992, 4.340260999999998], [111.43934500000006, 4.340304000000003], [111.43928799999992, 4.340347000000008], [111.439231, 4.340304000000003]], [[111.43888899999996, 4.524999999999977], [111.43894600000004, 4.524956000000088], [111.43900300000001, 4.524999999999977], [111.43894600000004, 4.525042000000099], [111.43888899999996, 4.524999999999977]], [[111.43896599999994, 4.464705999999978], [111.43902300000002, 4.464662999999973], [111.43907999999999, 4.464705999999978], [111.43902300000002, 4.464748999999983], [111.43896599999994, 4.464705999999978]], [[111.43883800000003, 4.438842000000136], [111.43889500000012, 4.438799000000131], [111.43895200000003, 4.438842000000136], [111.43889500000012, 4.438885000000141], [111.43883800000003, 4.438842000000136]], [[111.43926900000014, 4.40475200000003], [111.439325, 4.404709000000025], [111.43938299999996, 4.40475200000003], [111.439325, 4.4047950000000355], [111.43926900000014, 4.40475200000003]], [[111.93042900000012, 4.485699000000011], [111.93048700000014, 4.485657000000117], [111.93054299999994, 4.485699000000011], [111.93048700000014, 4.485743000000127], [111.93042900000012, 4.485699000000011]], [[111.93053200000014, 4.388104000000112], [111.93058999999994, 4.388061000000107], [111.93064600000014, 4.388104000000112], [111.93058999999994, 4.388147000000117], [111.93053200000014, 4.388104000000112]], [[111.43912000000006, 4.342340000000036], [111.43917600000009, 4.342295999999976], [111.43923400000011, 4.342338999999981], [111.43917600000009, 4.342381999999986], [111.43912000000006, 4.342340000000036]], [[111.93069100000014, 4.42524300000008], [111.93074899999993, 4.425200000000075], [111.93080499999996, 4.42524300000008], [111.93074899999993, 4.425286000000085], [111.93069100000014, 4.42524300000008]], [[111.43917100000004, 4.4303619999999455], [111.43922800000013, 4.43031899999994], [111.43928500000004, 4.4303619999999455], [111.43922800000013, 4.430404999999951], [111.43917100000004, 4.4303619999999455]], [[111.43903600000004, 4.392032000000029], [111.43909299999996, 4.391989000000024], [111.4391500000001, 4.392032000000029], [111.43909299999996, 4.392075000000034], [111.43903600000004, 4.392032000000029]], [[111.43883900000009, 4.245667000000083], [111.438896, 4.245623000000137], [111.43895300000014, 4.245667000000083], [111.438896, 4.245708999999977], [111.43883900000009, 4.245667000000083]], [[111.93089300000014, 4.4962979999999675], [111.930951, 4.496254999999962], [111.93100699999997, 4.4962979999999675], [111.930951, 4.496340999999973], [111.93089300000014, 4.4962979999999675]], [[111.43897800000008, 4.4842100000000755], [111.43903400000005, 4.48416700000007], [111.43909200000007, 4.4842100000000755], [111.43903400000005, 4.484253000000081], [111.43897800000008, 4.4842100000000755]], [[111.93069200000002, 4.51580100000001], [111.93075000000005, 4.5157570000001215], [111.93080600000008, 4.51580100000001], [111.93075000000005, 4.515843000000132], [111.93069200000002, 4.51580100000001]], [[111.92257300000011, 4.2336219999999685], [111.92263100000008, 4.2335800000000745], [111.92268700000011, 4.2336219999999685], [111.92263100000008, 4.233666000000085], [111.92257300000011, 4.2336219999999685]], [[111.43894699999998, 4.4323120000000245], [111.43900400000007, 4.432270000000074], [111.43906099999998, 4.4323120000000245], [111.43900400000007, 4.432356000000084], [111.43894699999998, 4.4323120000000245]], [[111.43881800000014, 4.207676000000106], [111.438874, 4.207633000000101], [111.43893199999997, 4.207676000000106], [111.438874, 4.207719000000111], [111.43881800000014, 4.207676000000106]], [[111.93062600000007, 4.281012000000089], [111.9306840000001, 4.280969000000084], [111.93074000000013, 4.281012000000089], [111.9306840000001, 4.281055000000094], [111.93062600000007, 4.281012000000089]], [[111.43891400000007, 4.37608999999992], [111.43897099999998, 4.376047000000085], [111.43902800000012, 4.37608999999992], [111.43897099999998, 4.376132999999925], [111.43891400000007, 4.37608999999992]], [[111.438872, 4.302483999999993], [111.43892799999998, 4.302440000000104], [111.438986, 4.302483000000109], [111.43892799999998, 4.302526000000114], [111.438872, 4.302483999999993]], [[111.43887599999994, 4.310284000000024], [111.43893300000008, 4.310242000000073], [111.43898999999999, 4.310284000000024], [111.43893300000008, 4.310328000000084], [111.43887599999994, 4.310284000000024]], [[111.43884900000006, 4.262626000000125], [111.43890500000003, 4.262584000000004], [111.43896300000006, 4.262626000000125], [111.43890500000003, 4.262670000000014], [111.43884900000006, 4.262626000000125]], [[111.93065000000013, 4.481714000000011], [111.93070700000004, 4.481671000000006], [111.93076400000012, 4.481714000000011], [111.93070700000004, 4.481757000000016], [111.93065000000013, 4.481714000000011]], [[111.43884000000003, 4.24668500000007], [111.438896, 4.246641000000011], [111.43895400000002, 4.24668500000007], [111.438896, 4.246727000000021], [111.43884000000003, 4.24668500000007]], [[111.93053800000007, 4.301446999999996], [111.9305960000001, 4.301403999999991], [111.93065200000012, 4.301446000000055], [111.9305960000001, 4.301490000000001], [111.93053800000007, 4.301446999999996]], [[111.438829, 4.227603999999985], [111.43888600000008, 4.22756099999998], [111.438943, 4.227603999999985], [111.43888600000008, 4.22764699999999], [111.438829, 4.227603999999985]], [[111.43883000000005, 4.228876000000071], [111.43888600000008, 4.228833000000066], [111.4389440000001, 4.228876000000071], [111.43888600000008, 4.228919000000076], [111.43883000000005, 4.228876000000071]], [[111.43928300000005, 4.428666000000135], [111.43933900000007, 4.42862300000013], [111.4393970000001, 4.428666000000135], [111.43933900000007, 4.42870900000014], [111.43928300000005, 4.428666000000135]], [[111.43908300000004, 4.4719989999999825], [111.43914000000012, 4.471955999999977], [111.43919700000004, 4.4719989999999825], [111.43914000000012, 4.472041999999988], [111.43908300000004, 4.4719989999999825]], [[111.43915900000013, 4.409246000000053], [111.43921499999993, 4.4092039999999315], [111.43927300000013, 4.409246000000053], [111.43921499999993, 4.409289999999942], [111.43915900000013, 4.409246000000053]], [[111.43928599999998, 4.434518000000139], [111.43934300000006, 4.434474000000023], [111.43939999999998, 4.434518000000139], [111.43934300000006, 4.434560000000033], [111.43928599999998, 4.434518000000139]], [[111.93035500000002, 4.426939000000061], [111.93041300000004, 4.426896000000056], [111.93046900000007, 4.426939000000061], [111.93041300000004, 4.426982000000066], [111.93035500000002, 4.426939000000061]], [[111.43928599999998, 4.434178000000031], [111.43934300000006, 4.434135000000026], [111.43939999999998, 4.434178000000031], [111.43934300000006, 4.434221000000036], [111.43928599999998, 4.434178000000031]], [[111.93069100000014, 4.425073000000054], [111.93074800000005, 4.425030000000049], [111.93080499999996, 4.425073000000054], [111.93074800000005, 4.42511600000006], [111.93069100000014, 4.425073000000054]], [[111.43917899999997, 4.248718999999994], [111.439235, 4.248675999999989], [111.43929300000002, 4.248718999999994], [111.439235, 4.248761999999999], [111.43917899999997, 4.248718999999994]], [[111.92326000000008, 4.243033999999966], [111.92331800000011, 4.242990999999961], [111.92337400000008, 4.243033000000082], [111.92331800000011, 4.243076999999971], [111.92326000000008, 4.243033999999966]], [[111.93047600000011, 4.249469999999974], [111.93053300000003, 4.249426000000028], [111.93058999999994, 4.249469999999974], [111.93053300000003, 4.249512000000038], [111.93047600000011, 4.249469999999974]], [[111.93075999999996, 4.39013900000009], [111.9308170000001, 4.390096000000085], [111.93087400000002, 4.39013900000009], [111.93081799999999, 4.390182000000095], [111.93075999999996, 4.39013900000009]], [[111.43881800000014, 4.20750600000008], [111.438874, 4.207463000000075], [111.43893199999997, 4.20750600000008], [111.438874, 4.2075490000000855], [111.43881800000014, 4.20750600000008]], [[111.43883800000003, 4.243038000000126], [111.438894, 4.242995000000121], [111.43895200000003, 4.243038000000126], [111.438894, 4.2430810000001316], [111.43883800000003, 4.243038000000126]], [[111.43918099999996, 4.446559000000036], [111.43923699999999, 4.446516000000031], [111.43929500000002, 4.446557999999925], [111.43923699999999, 4.446602000000041], [111.43918099999996, 4.446559000000036]], [[111.43884800000012, 4.261015000000043], [111.43890399999998, 4.260972999999922], [111.43896199999995, 4.261015000000043], [111.43890399999998, 4.261058999999932], [111.43884800000012, 4.261015000000043]], [[111.93069700000012, 4.518683000000124], [111.93075400000004, 4.518640000000119], [111.93081100000012, 4.518683000000124], [111.93075400000004, 4.518726000000129], [111.93069700000012, 4.518683000000124]], [[111.93051600000007, 4.465604000000042], [111.93057400000004, 4.4655610000000365], [111.93063000000006, 4.465603000000101], [111.93057400000004, 4.465647000000047], [111.93051600000007, 4.465604000000042]], [[111.43905100000006, 4.417387000000019], [111.43910700000009, 4.417345000000125], [111.43916500000006, 4.417387000000019], [111.43910700000009, 4.4174310000001356], [111.43905100000006, 4.417387000000019]], [[111.93067700000006, 4.503421000000117], [111.93073399999997, 4.503378000000112], [111.93079100000006, 4.503421000000117], [111.93073399999997, 4.503464000000122], [111.93067700000006, 4.503421000000117]], [[111.93043300000011, 4.213433000000009], [111.93049000000002, 4.213390000000004], [111.93054699999993, 4.213433000000009], [111.93049000000002, 4.213476000000014], [111.93043300000011, 4.213433000000009]], [[111.93043599999999, 4.215806999999984], [111.93049300000007, 4.215763999999979], [111.93055000000004, 4.215806999999984], [111.93049300000007, 4.215849999999989], [111.93043599999999, 4.215806999999984]], [[111.43918200000007, 4.254231000000061], [111.43923899999999, 4.254188000000056], [111.43929600000007, 4.254231000000061], [111.43923899999999, 4.254274000000066], [111.43918200000007, 4.254231000000061]], [[111.92234800000011, 4.23362300000008], [111.92240500000003, 4.2335800000000745], [111.92246199999994, 4.23362300000008], [111.92240600000014, 4.233666000000085], [111.92234800000011, 4.23362300000008]], [[111.93046300000009, 4.238447000000065], [111.93052, 4.238402999999948], [111.93057700000014, 4.238447000000065], [111.93052, 4.238488999999959], [111.93046300000009, 4.238447000000065]], [[111.9305250000001, 4.2900000000000205], [111.93058200000002, 4.289957000000015], [111.9306390000001, 4.2900000000000205], [111.93058200000002, 4.290043000000026], [111.9305250000001, 4.2900000000000205]], [[111.93055399999997, 4.3139960000000315], [111.93061100000011, 4.313953000000026], [111.93066800000003, 4.3139960000000315], [111.93061100000011, 4.314039000000037], [111.93055399999997, 4.3139960000000315]], [[111.43907100000013, 4.45130800000004], [111.43912699999993, 4.451265000000035], [111.43918500000012, 4.45130800000004], [111.43912800000004, 4.451351000000045], [111.43907100000013, 4.45130800000004]], [[111.43882300000001, 4.216835000000117], [111.43887999999993, 4.2167910000000575], [111.43893700000001, 4.216835000000117], [111.43887999999993, 4.216877000000068], [111.43882300000001, 4.216835000000117]], [[111.9307980000001, 4.420664000000102], [111.93085500000001, 4.4206210000000965], [111.93091199999992, 4.420664000000102], [111.93085600000012, 4.420707000000107], [111.9307980000001, 4.420664000000102]], [[111.4393540000001, 4.545775000000106], [111.43929699999995, 4.545818000000111], [111.43924000000004, 4.545775000000106], [111.43929699999995, 4.5457320000001005], [111.4393540000001, 4.545775000000106]], [[111.93059499999998, 4.2549810000001], [111.930653, 4.254938000000095], [111.93070900000004, 4.2549810000001], [111.930653, 4.255024000000105], [111.93059499999998, 4.2549810000001]], [[111.930655, 4.3043290000000525], [111.93071200000009, 4.304286999999931], [111.930769, 4.3043290000000525], [111.93071200000009, 4.304372999999941], [111.930655, 4.3043290000000525]], [[111.93044500000002, 4.498164000000031], [111.93050199999993, 4.498121000000026], [111.93055900000007, 4.498164000000031], [111.93050199999993, 4.498207000000036], [111.93044500000002, 4.498164000000031]], [[111.93092499999995, 4.521057000000042], [111.93098200000003, 4.5210140000000365], [111.931039, 4.521057000000042], [111.93098200000003, 4.521100000000047], [111.93092499999995, 4.521057000000042]], [[111.43908300000004, 4.471830000000011], [111.43914000000012, 4.471786000000122], [111.43919700000004, 4.471830000000011], [111.43914000000012, 4.471872000000133], [111.43908300000004, 4.471830000000011]], [[111.93048800000003, 4.259559000000024], [111.93054499999994, 4.2595170000000735], [111.93060200000008, 4.259559000000024], [111.93054600000005, 4.259603000000084], [111.93048800000003, 4.259559000000024]], [[111.43907999999999, 4.272972000000095], [111.43913700000007, 4.27292900000009], [111.43919399999999, 4.272972000000095], [111.43913700000007, 4.2730150000001], [111.43907999999999, 4.272972000000095]], [[111.43887500000005, 4.306554000000119], [111.43892999999997, 4.30651000000006], [111.43898700000011, 4.306553000000065], [111.43892999999997, 4.306597000000124], [111.43887500000005, 4.306554000000119]], [[111.92324900000006, 4.2336219999999685], [111.92330599999997, 4.233578999999963], [111.923362, 4.233621000000085], [111.92330700000008, 4.233664999999974], [111.92324900000006, 4.2336219999999685]], [[111.93046200000003, 4.237852999999916], [111.93051900000012, 4.237810000000138], [111.93057499999998, 4.237852999999916], [111.93052, 4.237895999999921], [111.93046200000003, 4.237852999999916]], [[111.43906200000009, 4.24117200000012], [111.43911800000006, 4.2411290000001145], [111.43917500000003, 4.24117200000012], [111.439119, 4.241215000000125], [111.43906200000009, 4.24117200000012]], [[111.93055199999998, 4.403196999999977], [111.930608, 4.403153999999972], [111.93066499999992, 4.403196999999977], [111.930608, 4.4032399999999825], [111.93055199999998, 4.403196999999977]], [[111.93048700000014, 4.258542999999975], [111.93054400000005, 4.258499000000029], [111.93060000000008, 4.258542000000034], [111.93054400000005, 4.258585000000039], [111.93048700000014, 4.258542999999975]], [[111.4390600000001, 4.432907000000057], [111.43911700000001, 4.432862999999941], [111.43917300000004, 4.432907000000057], [111.43911700000001, 4.432948999999951], [111.4390600000001, 4.432907000000057]], [[111.43903600000004, 4.391693999999973], [111.43909200000007, 4.391650000000027], [111.43914899999999, 4.391693000000032], [111.43909200000007, 4.391736000000037], [111.43903600000004, 4.391693999999973]], [[111.43897800000008, 4.290187000000003], [111.43903400000005, 4.290143999999998], [111.43909000000008, 4.290186000000119], [111.43903400000005, 4.290230000000008], [111.43897800000008, 4.290187000000003]], [[111.43883000000005, 4.2272649999999885], [111.43888499999997, 4.227221999999983], [111.43894200000011, 4.227264000000105], [111.43888499999997, 4.227307999999994], [111.43883000000005, 4.2272649999999885]], [[111.43919, 4.460467000000051], [111.43924600000003, 4.460422999999992], [111.43930200000005, 4.460465999999997], [111.43924600000003, 4.460509000000002], [111.43919, 4.460467000000051]]], [[[111.43849399999999, 4.426121999999964], [111.4386070000001, 4.42620700000009], [111.4386070000001, 4.4262919999999895], [111.43866200000002, 4.426334000000111], [111.43871800000005, 4.4262919999999895], [111.43871800000005, 4.42608000000007], [111.43854900000008, 4.42608000000007], [111.43849399999999, 4.426121999999964]]], [[[111.438533, 4.491928000000087], [111.43870100000004, 4.492053000000112], [111.43875700000007, 4.492012000000102], [111.43875700000007, 4.491885999999965], [111.43858799999992, 4.491885999999965], [111.438533, 4.491928000000087]]], [[[111.43838100000005, 4.229215000000011], [111.43843600000014, 4.229257000000132], [111.438604, 4.229257000000132], [111.438604, 4.229215000000011], [111.438604, 4.229130999999995], [111.43854900000008, 4.229089000000101], [111.43838100000005, 4.229215000000011]]], [[[111.43854299999992, 4.507615000000044], [111.43871000000007, 4.507742000000064], [111.4387660000001, 4.5077], [111.4387660000001, 4.507574000000034], [111.43859800000007, 4.507574000000034], [111.43854299999992, 4.507615000000044]]], [[[111.43838899999997, 4.243291999999997], [111.43855700000006, 4.243419000000017], [111.43861199999998, 4.243377000000123], [111.43861199999998, 4.243250999999987], [111.43844400000012, 4.243250999999987], [111.43838899999997, 4.243291999999997]]], [[[111.43855800000011, 4.533564000000013], [111.43861300000003, 4.533606000000077], [111.43872599999997, 4.533606000000077], [111.438782, 4.533564000000013], [111.43872599999997, 4.533522000000062], [111.43861300000003, 4.533522000000062], [111.43855800000011, 4.533564000000013]]], [[[111.43846200000002, 4.371340999999916], [111.4385170000001, 4.371383000000037], [111.43863000000005, 4.371383000000037], [111.43868600000008, 4.371340999999916], [111.43863000000005, 4.371299000000022], [111.4385170000001, 4.371299000000022], [111.43846200000002, 4.371340999999916]]], [[[111.43854900000008, 4.518385000000137], [111.438604, 4.518427000000088], [111.43871699999994, 4.518427000000088], [111.43877300000014, 4.518385000000137], [111.43871699999994, 4.518343000000016], [111.438604, 4.518343000000016], [111.43854900000008, 4.518385000000137]]], [[[111.438445, 4.342424000000108], [111.43849999999992, 4.342466000000002], [111.43861300000003, 4.342466000000002], [111.43866900000006, 4.342424000000108], [111.43861300000003, 4.342381999999986], [111.43849999999992, 4.342381999999986], [111.438445, 4.342424000000108]]], [[[111.43852199999998, 4.472846999999945], [111.43857700000007, 4.472889000000066], [111.43869000000001, 4.472889000000066], [111.43874499999998, 4.472846999999945], [111.43869000000001, 4.472805000000051], [111.43857700000007, 4.472805000000051], [111.43852199999998, 4.472846999999945]]], [[[111.43854700000009, 4.514230000000055], [111.438602, 4.514272000000005], [111.43871400000006, 4.514272000000005], [111.43877000000009, 4.514230000000055], [111.43871400000006, 4.51418799999999], [111.438602, 4.51418799999999], [111.43854700000009, 4.514230000000055]]], [[[111.43850600000007, 4.445287000000121], [111.43856099999999, 4.445329000000072], [111.43867300000005, 4.445329000000072], [111.43872900000008, 4.445287000000121], [111.43867300000005, 4.445245], [111.43856099999999, 4.445245], [111.43850600000007, 4.445287000000121]]], [[[111.438402, 4.266019000000028], [111.43845700000008, 4.266061000000093], [111.43856899999997, 4.266061000000093], [111.438625, 4.266019000000028], [111.43856899999997, 4.265977000000078], [111.43845700000008, 4.265977000000078], [111.438402, 4.266019000000028]]], [[[111.43848500000013, 4.214629000000059], [111.43848500000013, 4.214714000000129], [111.43854000000005, 4.214756000000079], [111.43859600000008, 4.214714000000129], [111.43859600000008, 4.214629000000059], [111.43854000000005, 4.214588000000049], [111.43848500000013, 4.214629000000059]]], [[[111.43848700000012, 4.413657000000001], [111.43854200000004, 4.413699000000065], [111.43865499999998, 4.413698000000011], [111.43871000000007, 4.413657000000001], [111.43865499999998, 4.41361500000005], [111.43854200000004, 4.41361500000005], [111.43848700000012, 4.413657000000001]]], [[[111.43849999999992, 4.436553000000117], [111.43855500000006, 4.436594000000127], [111.438668, 4.436594000000127], [111.43872399999998, 4.436552000000006], [111.438668, 4.436510999999996], [111.43855500000006, 4.436510999999996], [111.43849999999992, 4.436553000000117]]], [[[111.43846500000006, 4.376175000000046], [111.43851999999998, 4.376216000000056], [111.4386330000001, 4.376216000000056], [111.43868900000012, 4.376175000000046], [111.4386330000001, 4.376132999999925], [111.43851999999998, 4.376132999999925], [111.43846500000006, 4.376175000000046]]], [[[111.43848400000002, 4.409163000000092], [111.43853899999999, 4.4092039999999315], [111.4386520000001, 4.4092039999999315], [111.43870800000008, 4.409163000000092], [111.4386520000001, 4.409121000000027], [111.43853899999999, 4.409121000000027], [111.43848400000002, 4.409163000000092]]], [[[111.43843800000013, 4.329705000000047], [111.43849300000005, 4.329746000000057], [111.438606, 4.329746000000057], [111.43866200000002, 4.329705000000047], [111.438606, 4.329663000000096], [111.43849300000005, 4.329663000000096], [111.43843800000013, 4.329705000000047]]], [[[111.43847000000011, 4.385248000000047], [111.43852500000003, 4.385289999999998], [111.43863799999997, 4.385289999999998], [111.438694, 4.385248000000047], [111.43863799999997, 4.385207000000037], [111.43852500000003, 4.385207000000037], [111.43847000000011, 4.385248000000047]]], [[[111.43845900000008, 4.365745000000004], [111.43851400000005, 4.365786000000014], [111.43862699999994, 4.365786000000014], [111.43868299999997, 4.365745000000004], [111.43862699999994, 4.36570300000011], [111.43851400000005, 4.36570300000011], [111.43845900000008, 4.365745000000004]]], [[[111.43878799999999, 4.543570000000102], [111.43873200000013, 4.543529000000092], [111.43861900000002, 4.543529000000092], [111.4385640000001, 4.543570000000102], [111.43861900000002, 4.543612000000053], [111.43873200000013, 4.543612000000053], [111.43878799999999, 4.543570000000102]]], [[[111.43851599999999, 4.462925999999925], [111.43857100000014, 4.462966999999992], [111.43868400000008, 4.462966999999992], [111.43874000000005, 4.462925999999925], [111.43868400000008, 4.462884000000031], [111.43857100000014, 4.462884000000031], [111.43851599999999, 4.462925999999925]]], [[[111.43850300000003, 4.440963000000124], [111.43855800000011, 4.4410040000001345], [111.43867100000006, 4.4410040000001345], [111.43872700000009, 4.440963000000124], [111.43867100000006, 4.440921000000003], [111.43855800000011, 4.440921000000003], [111.43850300000003, 4.440963000000124]]], [[[111.43852199999998, 4.473525999999993], [111.43857700000007, 4.473567000000003], [111.43869000000001, 4.473567000000003], [111.43874600000004, 4.473525000000109], [111.43869000000001, 4.473484000000099], [111.43857700000007, 4.473484000000099], [111.43852199999998, 4.473525999999993]]], [[[111.43850600000007, 4.445965000000115], [111.43856099999999, 4.446007000000009], [111.43867399999993, 4.446007000000009], [111.43873000000013, 4.445965000000115], [111.43867399999993, 4.445924000000048], [111.43856099999999, 4.445924000000048], [111.43850600000007, 4.445965000000115]]], [[[111.43845900000008, 4.3664229999999975], [111.43851400000005, 4.366464000000008], [111.43862699999994, 4.366464000000008], [111.43868299999997, 4.366422000000057], [111.43862699999994, 4.366381000000047], [111.43851400000005, 4.366381000000047], [111.43845900000008, 4.3664229999999975]]], [[[111.43829500000004, 4.2771280000000615], [111.43829500000004, 4.277212000000077], [111.43835100000007, 4.277254000000028], [111.43840599999999, 4.277212000000077], [111.43840599999999, 4.2771280000000615], [111.43835100000007, 4.277087000000051], [111.43829500000004, 4.2771280000000615]]], [[[111.43839200000008, 4.248550000000023], [111.438447, 4.248591999999974], [111.43856000000011, 4.248591999999974], [111.43861500000003, 4.248550000000023], [111.438559, 4.248509000000013], [111.438447, 4.248509000000013], [111.43839200000008, 4.248550000000023]]], [[[111.43840900000004, 4.278569000000118], [111.43846399999995, 4.278611000000012], [111.43857700000007, 4.278611000000012], [111.43863200000004, 4.278569000000118], [111.43857600000001, 4.278528000000108], [111.43846399999995, 4.278528000000108], [111.43840900000004, 4.278569000000118]]], [[[111.43838100000005, 4.228453000000059], [111.43843600000014, 4.228494000000069], [111.43854800000003, 4.228494000000069], [111.438604, 4.2284519999999475], [111.43854800000003, 4.228411000000108], [111.43843600000014, 4.228411000000108], [111.43838100000005, 4.228453000000059]]], [[[111.438443, 4.337675999999988], [111.43849799999992, 4.337716999999998], [111.43860999999998, 4.337716999999998], [111.43866600000001, 4.337675000000104], [111.43860999999998, 4.337634000000037], [111.43849799999992, 4.337634000000037], [111.438443, 4.337675999999988]]], [[[111.43843600000014, 4.3256339999999796], [111.43849100000006, 4.32567499999999], [111.43860300000011, 4.32567499999999], [111.43865899999997, 4.3256339999999796], [111.43860300000011, 4.325592000000086], [111.43849100000006, 4.325592000000086], [111.43843600000014, 4.3256339999999796]]], [[[111.43846799999994, 4.380499999999984], [111.43852300000009, 4.380540999999994], [111.43863500000009, 4.380540999999994], [111.43869100000012, 4.380499999999984], [111.43863500000009, 4.380458000000033], [111.43852300000009, 4.380458000000033], [111.43846799999994, 4.380499999999984]]], [[[111.4384290000001, 4.313252999999975], [111.43848400000002, 4.313294000000042], [111.43859600000008, 4.313294000000042], [111.4386520000001, 4.313252999999975], [111.43859600000008, 4.313211000000081], [111.43848400000002, 4.313211000000081], [111.4384290000001, 4.313252999999975]]], [[[111.43841500000002, 4.288492000000133], [111.43847000000011, 4.288532999999973], [111.438582, 4.288532999999973], [111.43863799999997, 4.288491000000022], [111.438582, 4.288450000000012], [111.43847000000011, 4.288450000000012], [111.43841500000002, 4.288492000000133]]], [[[111.438559, 4.53424300000006], [111.43861399999997, 4.534284000000071], [111.43872599999997, 4.534284000000071], [111.438782, 4.53424200000012], [111.43872599999997, 4.53420100000011], [111.43861399999997, 4.53420100000011], [111.438559, 4.53424300000006]]], [[[111.43841500000002, 4.288831000000073], [111.43847000000011, 4.28887200000014], [111.438582, 4.28887200000014], [111.43863799999997, 4.288831000000073], [111.438582, 4.288789000000008], [111.43847000000011, 4.288789000000008], [111.43841500000002, 4.288831000000073]]], [[[111.43853400000006, 4.4926900000000956], [111.43858900000004, 4.4927319999999895], [111.43870100000004, 4.4927319999999895], [111.43875700000007, 4.4926900000000956], [111.43870100000004, 4.4926490000000285], [111.43858900000004, 4.4926490000000285], [111.43853400000006, 4.4926900000000956]]], [[[111.43848700000012, 4.412978000000123], [111.43854200000004, 4.413020000000017], [111.43865400000004, 4.413020000000017], [111.43871000000007, 4.412978000000123], [111.43865400000004, 4.412937000000113], [111.43854200000004, 4.412937000000113], [111.43848700000012, 4.412978000000123]]], [[[111.43854999999996, 4.519064000000014], [111.43860500000011, 4.519105000000025], [111.43871699999994, 4.519105000000025], [111.43877300000014, 4.519063000000131], [111.43871699999994, 4.519022000000064], [111.43860500000011, 4.519022000000064], [111.43854999999996, 4.519064000000014]]], [[[111.43847800000009, 4.397799000000077], [111.438533, 4.397840999999971], [111.43864500000001, 4.397840999999971], [111.43870100000004, 4.397799000000077], [111.43864500000001, 4.397758000000067], [111.438533, 4.397758000000067], [111.43847800000009, 4.397799000000077]]], [[[111.43851599999999, 4.462247000000104], [111.43857100000014, 4.462288999999998], [111.43868299999997, 4.462288999999998], [111.438739, 4.462247000000104], [111.43868299999997, 4.462206000000037], [111.43857100000014, 4.462206000000037], [111.43851599999999, 4.462247000000104]]], [[[111.43846500000006, 4.375495999999998], [111.43851999999998, 4.37553800000012], [111.43863200000004, 4.37553800000012], [111.43868800000001, 4.375495999999998], [111.43863200000004, 4.375454999999988], [111.43851999999998, 4.375454999999988], [111.43846500000006, 4.375495999999998]]], [[[111.43847000000011, 4.384486000000095], [111.43863799999997, 4.38461100000012], [111.43869300000011, 4.38457000000011], [111.43852500000003, 4.384443999999974], [111.43847000000011, 4.384486000000095]]], [[[111.43878700000005, 4.542891999999995], [111.43873200000013, 4.542850999999928], [111.43861900000002, 4.542850999999928], [111.4385640000001, 4.542891999999995], [111.43861900000002, 4.542933000000005], [111.43873200000013, 4.542933000000005], [111.43878700000005, 4.542891999999995]]], [[[111.4385190000001, 4.274075000000096], [111.43857400000002, 4.27411699999999], [111.43863000000005, 4.274075000000096], [111.43857400000002, 4.274032999999974], [111.4385190000001, 4.274075000000096]]], [[[111.43863799999997, 4.478613999999993], [111.43869300000011, 4.4786560000001145], [111.43874899999992, 4.478613999999993], [111.43869300000011, 4.478572000000099], [111.43863799999997, 4.478613999999993]]], [[[111.43863700000009, 4.477172000000053], [111.438692, 4.477214000000004], [111.43874800000003, 4.477172000000053], [111.438692, 4.477129999999931], [111.43863700000009, 4.477172000000053]]], [[[111.43872900000008, 4.539287999999999], [111.43878500000005, 4.539246000000105], [111.43872900000008, 4.539203999999984], [111.43867399999993, 4.539246000000105], [111.43872900000008, 4.539287999999999]]], [[[111.438623, 4.45385200000004], [111.4386780000001, 4.453893999999934], [111.43873400000012, 4.45385200000004], [111.4386780000001, 4.4538100000000895], [111.438623, 4.45385200000004]]], [[[111.43863099999993, 4.46759000000003], [111.43868600000008, 4.467631999999924], [111.43874200000005, 4.46759000000003], [111.43868600000008, 4.467548000000079], [111.43863099999993, 4.46759000000003]]], [[[111.43851000000006, 4.259064999999964], [111.43856499999998, 4.2591070000000855], [111.43862100000001, 4.259064999999964], [111.43856499999998, 4.25902300000007], [111.43851000000006, 4.259064999999964]]], [[[111.43851099999995, 4.2604220000000055], [111.4385660000001, 4.260464000000127], [111.43862200000007, 4.2604220000000055], [111.4385660000001, 4.260380000000055], [111.43851099999995, 4.2604220000000055]]], [[[111.43863999999996, 4.48268400000012], [111.43869500000011, 4.482726000000071], [111.43875100000008, 4.48268400000012], [111.43869500000011, 4.482642000000055], [111.43863999999996, 4.48268400000012]]], [[[111.4386090000001, 4.4303619999999455], [111.43866400000002, 4.430404000000067], [111.43872000000005, 4.4303619999999455], [111.43866400000002, 4.4303200000000516], [111.4386090000001, 4.4303619999999455]]], [[[111.438535, 4.302992000000074], [111.43859000000009, 4.303034000000025], [111.43864600000012, 4.302992000000074], [111.43859000000009, 4.30295000000001], [111.438535, 4.302992000000074]]], [[[111.43855500000006, 4.33699700000011], [111.43860999999998, 4.337039000000061], [111.43866600000001, 4.33699700000011], [111.43860999999998, 4.336954999999989], [111.43855500000006, 4.33699700000011]]], [[[111.43849, 4.223534000000029], [111.43854499999992, 4.223576000000094], [111.43860100000012, 4.223534000000029], [111.43854499999992, 4.223492000000078], [111.43849, 4.223534000000029]]], [[[111.43849799999992, 4.237187000000063], [111.43855300000007, 4.2372290000000135], [111.4386090000001, 4.237187000000063], [111.43855300000007, 4.237144999999998], [111.43849799999992, 4.237187000000063]]], [[[111.4385170000001, 4.27000500000014], [111.43857200000002, 4.270047000000034], [111.43862800000005, 4.27000500000014], [111.43857200000002, 4.269963000000018], [111.4385170000001, 4.27000500000014]]], [[[111.438535, 4.301549999999963], [111.43859000000009, 4.301592000000085], [111.43864600000012, 4.301549999999963], [111.43859000000009, 4.301508000000069], [111.438535, 4.301549999999963]]], [[[111.43854800000003, 4.324615999999935], [111.43860300000011, 4.324658000000056], [111.43865899999997, 4.324615999999935], [111.43860300000011, 4.324574000000041], [111.43854800000003, 4.324615999999935]]], [[[111.43854999999996, 4.329025999999999], [111.43860500000011, 4.329068000000063], [111.43866100000014, 4.329025999999999], [111.43860500000011, 4.328984000000048], [111.43854999999996, 4.329025999999999]]], [[[111.43855300000007, 4.3330960000001255], [111.43860799999999, 4.3331380000000195], [111.43866400000002, 4.3330960000001255], [111.43860799999999, 4.333054000000004], [111.43855300000007, 4.3330960000001255]]], [[[111.4385660000001, 4.356077000000141], [111.43862100000001, 4.356119000000092], [111.43867700000004, 4.356077000000141], [111.43862100000001, 4.356035000000077], [111.4385660000001, 4.356077000000141]]], [[[111.43857500000013, 4.371510999999941], [111.43863000000005, 4.371553000000063], [111.43868600000008, 4.371510999999941], [111.43863000000005, 4.371469000000047], [111.43857500000013, 4.371510999999941]]], [[[111.438668, 4.529409000000101], [111.4387230000001, 4.529451000000051], [111.43877900000012, 4.529409000000101], [111.4387230000001, 4.529367000000036], [111.438668, 4.529409000000101]]], [[[111.438582, 4.383807000000047], [111.43863700000009, 4.383849000000112], [111.43869300000011, 4.383807000000047], [111.43863700000009, 4.383765000000096], [111.438582, 4.383807000000047]]], [[[111.438602, 4.418151000000023], [111.43865699999998, 4.418192999999917], [111.43871299999995, 4.418151000000023], [111.43865699999998, 4.418109000000072], [111.438602, 4.418151000000023]]], [[[111.438606, 4.424766000000034], [111.43866100000014, 4.4248079999999845], [111.43871699999994, 4.424766000000034], [111.43866100000014, 4.42472400000014], [111.438606, 4.424766000000034]]], [[[111.43867199999994, 4.534920999999997], [111.43872700000009, 4.534963000000118], [111.43878300000006, 4.534920999999997], [111.43872700000009, 4.534879000000103], [111.43867199999994, 4.534920999999997]]], [[[111.43867100000006, 4.533734000000038], [111.43872599999997, 4.533775999999932], [111.438782, 4.533734000000038], [111.43872599999997, 4.533692000000087], [111.43867100000006, 4.533734000000038]]], [[[111.43866500000007, 4.5239819999999895], [111.43872000000005, 4.524024000000054], [111.43877600000002, 4.5239819999999895], [111.43872000000005, 4.523940000000039], [111.43866500000007, 4.5239819999999895]]], [[[111.43866300000008, 4.5198270000000775], [111.43871800000005, 4.519869000000028], [111.43877400000002, 4.5198270000000775], [111.43871800000005, 4.519784999999956], [111.43866300000008, 4.5198270000000775]]], [[[111.43865800000003, 4.511600999999985], [111.43871299999995, 4.511643000000106], [111.43876899999998, 4.511600999999985], [111.43871299999995, 4.511559000000034], [111.43865800000003, 4.511600999999985]]], [[[111.4386520000001, 4.501934000000006], [111.43870700000002, 4.501976000000127], [111.43876300000005, 4.501934000000006], [111.43870700000002, 4.501892000000112], [111.4386520000001, 4.501934000000006]]], [[[111.438651, 4.500577000000021], [111.43870600000008, 4.500618999999915], [111.43876200000011, 4.500577000000021], [111.43870600000008, 4.50053500000007], [111.438651, 4.500577000000021]]], [[[111.43848100000014, 4.2072520000000395], [111.43853600000006, 4.207294000000104], [111.43859200000009, 4.2072520000000395], [111.43853600000006, 4.207210000000089], [111.43848100000014, 4.2072520000000395]]], [[[111.438488, 4.2196329999999875], [111.43854299999992, 4.219675000000109], [111.43859900000012, 4.2196329999999875], [111.43854299999992, 4.219591000000094], [111.438488, 4.2196329999999875]]], [[[111.43853800000005, 4.306978000000015], [111.43859299999997, 4.307020000000136], [111.438649, 4.306978000000015], [111.43859299999997, 4.306936000000121], [111.43853800000005, 4.306978000000015]]], [[[111.43848900000012, 4.220990000000029], [111.43854400000004, 4.221031999999923], [111.43860000000006, 4.220990000000029], [111.43854400000004, 4.220948000000078], [111.43848900000012, 4.220990000000029]]], [[[111.43865400000004, 4.505919000000063], [111.43870900000002, 4.505960999999957], [111.43876499999999, 4.505919000000063], [111.43870900000002, 4.505877000000112], [111.43865400000004, 4.505919000000063]]], [[[111.43849599999999, 4.233286000000078], [111.43855100000007, 4.233327999999972], [111.4386070000001, 4.233286000000078], [111.43855100000007, 4.2332439999999565], [111.43849599999999, 4.233286000000078]]], [[[111.43850699999996, 4.253553000000068], [111.4385620000001, 4.2535950000000184], [111.43861800000013, 4.253553000000068], [111.4385620000001, 4.253511000000003], [111.43850699999996, 4.253553000000068]]], [[[111.43856299999999, 4.3507350000001], [111.43861800000013, 4.3507770000000505], [111.43867399999993, 4.3507350000001], [111.43861800000013, 4.350693000000035], [111.43856299999999, 4.3507350000001]]], [[[111.43856899999997, 4.361673999999994], [111.43862400000006, 4.361716000000058], [111.43868000000009, 4.361673999999994], [111.43862400000006, 4.361632000000043], [111.43856899999997, 4.361673999999994]]], [[[111.43852900000002, 4.292053000000067], [111.43858399999993, 4.292094999999961], [111.43863999999996, 4.292053000000067], [111.43858399999993, 4.292011000000116], [111.43852900000002, 4.292053000000067]]], [[[111.43858500000005, 4.389149000000089], [111.43863999999996, 4.3891909999999825], [111.438696, 4.389149000000089], [111.43863999999996, 4.389107000000138], [111.43858500000005, 4.389149000000089]]], [[[111.43858599999993, 4.390591000000029], [111.43864100000008, 4.3906330000000935], [111.43869700000005, 4.390591000000029], [111.43864100000008, 4.390549000000078], [111.43858599999993, 4.390591000000029]]], [[[111.43859100000003, 4.398817000000122], [111.43864600000012, 4.398859000000016], [111.43870199999998, 4.398817000000122], [111.43864600000012, 4.3987750000000005], [111.43859100000003, 4.398817000000122]]], [[[111.43859299999997, 4.402971999999977], [111.43864800000011, 4.403014000000098], [111.43870399999992, 4.402971999999977], [111.43864800000011, 4.402930000000083], [111.43859299999997, 4.402971999999977]]], [[[111.43860000000006, 4.4139959999999405], [111.43865499999998, 4.414038000000062], [111.43871100000001, 4.4139959999999405], [111.43865499999998, 4.413954000000047], [111.43860000000006, 4.4139959999999405]]], [[[111.43860799999999, 4.427564000000075], [111.43866300000008, 4.427606000000026], [111.4387190000001, 4.427564000000075], [111.43866300000008, 4.42752200000001], [111.43860799999999, 4.427564000000075]]], [[[111.43862899999993, 4.463265000000092], [111.43868400000008, 4.463307000000043], [111.43874000000005, 4.463265000000092], [111.43868400000008, 4.463223000000028], [111.43862899999993, 4.463265000000092]]], [[[111.43860999999998, 4.431718999999987], [111.43866500000007, 4.431761000000108], [111.4387210000001, 4.431718999999987], [111.43866500000007, 4.431677000000036], [111.43860999999998, 4.431718999999987]]], [[[111.43861300000003, 4.435874000000069], [111.438668, 4.435916000000134], [111.43872399999998, 4.435874000000069], [111.438668, 4.435832000000119], [111.43861300000003, 4.435874000000069]]], [[[111.43861500000003, 4.43994500000008], [111.43866999999995, 4.4399870000000305], [111.43872599999997, 4.43994500000008], [111.43866999999995, 4.439902999999958], [111.43861500000003, 4.43994500000008]]], [[[111.43863500000009, 4.474203999999986], [111.43869000000001, 4.474246000000051], [111.43874600000004, 4.474203999999986], [111.43869000000001, 4.474162000000035], [111.43863500000009, 4.474203999999986]]], [[[111.43866600000001, 4.525422999999989], [111.4387210000001, 4.525465000000111], [111.43877700000013, 4.525422999999989], [111.4387210000001, 4.525381000000095], [111.43866600000001, 4.525422999999989]]], [[[111.43852199999998, 4.279586999999992], [111.43857700000007, 4.279629000000057], [111.4386330000001, 4.279586999999992], [111.43857700000007, 4.2795450000000415], [111.43852199999998, 4.279586999999992]]], [[[111.43862699999994, 4.460551000000066], [111.43868200000009, 4.460593000000017], [111.43873800000011, 4.460551000000066], [111.43868200000009, 4.460509000000002], [111.43862699999994, 4.460551000000066]]], [[[111.43872900000008, 4.537846000000059], [111.438784, 4.537803999999994], [111.43872900000008, 4.537762000000043], [111.43867399999993, 4.537803999999994], [111.43872900000008, 4.537846000000059]]], [[[111.43856899999997, 4.360317000000123], [111.43862400000006, 4.360359000000074], [111.43867899999998, 4.360317000000123], [111.438623, 4.360275000000058], [111.43856899999997, 4.360317000000123]]], [[[111.43865000000011, 4.497862999999995], [111.43870500000003, 4.49790500000006], [111.43875999999995, 4.497862999999995], [111.43870399999992, 4.4978210000000445], [111.43865000000011, 4.497862999999995]]], [[[111.43861800000013, 4.444185000000061], [111.43867300000005, 4.444227000000012], [111.43872800000014, 4.444185000000061], [111.43867300000005, 4.444142999999997], [111.43861800000013, 4.444185000000061]]], [[[111.43865899999997, 4.512957999999969], [111.43871400000006, 4.5130000000000905], [111.43876899999998, 4.512957999999969], [111.43871400000006, 4.512916000000075], [111.43865899999997, 4.512957999999969]]], [[[111.43851400000005, 4.264661999999987], [111.43856899999997, 4.264704000000108], [111.43862400000006, 4.264661999999987], [111.43856899999997, 4.264620000000093], [111.43851400000005, 4.264661999999987]]], [[[111.43858, 4.37948200000011], [111.43863500000009, 4.3795240000000035], [111.43869000000001, 4.37948200000011], [111.43863500000009, 4.379439999999988], [111.43858, 4.37948200000011]]], [[[111.43850400000008, 4.246854000000042], [111.438559, 4.246895999999936], [111.43861399999997, 4.246854000000042], [111.438559, 4.24681199999992], [111.43850400000008, 4.246854000000042]]], [[[111.43849100000006, 4.22378800000007], [111.43854600000003, 4.223829999999964], [111.43860100000012, 4.22378800000007], [111.43854600000003, 4.223745999999949], [111.43849100000006, 4.22378800000007]]], [[[111.43854200000004, 4.313761999999997], [111.43859699999996, 4.313804000000118], [111.4386520000001, 4.313761999999997], [111.43859699999996, 4.313720000000103], [111.43854200000004, 4.313761999999997]]], [[[111.43848600000001, 4.2164110000000505], [111.43854099999993, 4.216452000000061], [111.43859699999996, 4.2164110000000505], [111.43854099999993, 4.216368999999929], [111.43848600000001, 4.2164110000000505]]], [[[111.43858500000005, 4.3894880000000285], [111.43863999999996, 4.389529999999979], [111.438696, 4.3894880000000285], [111.43863999999996, 4.389447000000018], [111.43858500000005, 4.3894880000000285]]], [[[111.43866200000002, 4.519403000000011], [111.43871699999994, 4.519444000000021], [111.43877300000014, 4.519403000000011], [111.43871699999994, 4.51936100000006], [111.43866200000002, 4.519403000000011]]], [[[111.43860999999998, 4.432057999999984], [111.43866500000007, 4.432100000000048], [111.4387210000001, 4.432057999999984], [111.43866500000007, 4.4320169999999735], [111.43860999999998, 4.432057999999984]]], [[[111.43850100000003, 4.242189999999937], [111.43855600000012, 4.242231000000004], [111.43861199999998, 4.242189999999937], [111.43855600000012, 4.242148000000043], [111.43850100000003, 4.242189999999937]]], [[[111.43866200000002, 4.518554999999992], [111.43871699999994, 4.518596000000002], [111.43877300000014, 4.518554999999992], [111.43871699999994, 4.518513000000098], [111.43866200000002, 4.518554999999992]]], [[[111.43857400000002, 4.369984000000102], [111.43862899999993, 4.370025999999996], [111.43868500000013, 4.369984000000102], [111.43862899999993, 4.369943000000092], [111.43857400000002, 4.369984000000102]]], [[[111.43864300000007, 4.487688000000105], [111.43869799999999, 4.487729000000115], [111.43875400000002, 4.487688000000105], [111.43869799999999, 4.487645999999984], [111.43864300000007, 4.487688000000105]]], [[[111.43852199999998, 4.28018000000003], [111.43857700000007, 4.280222000000094], [111.4386330000001, 4.28018000000003], [111.43857700000007, 4.280138999999963], [111.43852199999998, 4.28018000000003]]], [[[111.43850400000008, 4.2475330000000895], [111.438559, 4.2475740000001], [111.43861500000003, 4.247531999999978], [111.438559, 4.247490999999968], [111.43850400000008, 4.2475330000000895]]], [[[111.4385660000001, 4.356755000000135], [111.43862100000001, 4.356797000000029], [111.43867700000004, 4.356755000000135], [111.43862100000001, 4.3567140000001245], [111.4385660000001, 4.356755000000135]]], [[[111.43848100000014, 4.206574000000046], [111.43853600000006, 4.206615000000056], [111.43859200000009, 4.206572999999992], [111.43853600000006, 4.2065319999999815], [111.43848100000014, 4.206574000000046]]], [[[111.43856000000011, 4.34581600000007], [111.43861500000003, 4.345858000000021], [111.43867100000006, 4.34581600000007], [111.43861500000003, 4.34577500000006], [111.43856000000011, 4.34581600000007]]], [[[111.43855700000006, 4.34106799999995], [111.43861199999998, 4.341109000000017], [111.438668, 4.34106799999995], [111.43861199999998, 4.341026000000056], [111.43855700000006, 4.34106799999995]]], [[[111.43859900000012, 4.413147999999978], [111.43865400000004, 4.4131889999999885], [111.43871000000007, 4.413147000000038], [111.43865400000004, 4.4131060000000275], [111.43859900000012, 4.413147999999978]]], [[[111.43855500000006, 4.336658000000114], [111.43860999999998, 4.336698999999953], [111.43866600000001, 4.336658000000114], [111.43860999999998, 4.336616000000049], [111.43855500000006, 4.336658000000114]]], [[[111.43855300000007, 4.334113999999943], [111.43860799999999, 4.334154999999953], [111.43866400000002, 4.334113999999943], [111.43860799999999, 4.334072000000049], [111.43855300000007, 4.334113999999943]]], [[[111.43855300000007, 4.333349999999996], [111.43860799999999, 4.33339200000006], [111.43866400000002, 4.333349999999996], [111.43860799999999, 4.333308999999986], [111.43855300000007, 4.333349999999996]]], [[[111.43864500000001, 4.490994000000057], [111.43869999999998, 4.491036000000008], [111.43875599999996, 4.490994000000057], [111.43869999999998, 4.490953000000047], [111.43864500000001, 4.490994000000057]]], [[[111.43855199999996, 4.332418000000132], [111.4386070000001, 4.332458999999972], [111.43866300000008, 4.332418000000132], [111.4386070000001, 4.3323760000000675], [111.43855199999996, 4.332418000000132]]], [[[111.43862600000006, 4.4591100000000665], [111.43868099999997, 4.459151000000077], [111.438737, 4.4591100000000665], [111.43868099999997, 4.459068000000116], [111.43862600000006, 4.4591100000000665]]], [[[111.43855100000007, 4.329874000000132], [111.438606, 4.329914999999971], [111.43866200000002, 4.329874000000132], [111.438606, 4.329832000000067], [111.43855100000007, 4.329874000000132]]], [[[111.43851099999995, 4.260083000000009], [111.4385660000001, 4.260124000000019], [111.43862200000007, 4.260083000000009], [111.4385660000001, 4.260041000000115], [111.43851099999995, 4.260083000000009]]], [[[111.43854999999996, 4.328687000000002], [111.43860500000011, 4.328728000000012], [111.43866100000014, 4.328687000000002], [111.43860500000011, 4.328645000000051], [111.43854999999996, 4.328687000000002]]], [[[111.43854999999996, 4.328348000000005], [111.43860500000011, 4.328389000000016], [111.43866100000014, 4.328348000000005], [111.43860500000011, 4.3283060000001115], [111.43854999999996, 4.328348000000005]]], [[[111.43854800000003, 4.324955000000102], [111.43860300000011, 4.324997000000053], [111.43865899999997, 4.324955000000102], [111.43860300000011, 4.324914000000092], [111.43854800000003, 4.324955000000102]]], [[[111.43865800000003, 4.5122800000000325], [111.43871299999995, 4.512321000000043], [111.43876899999998, 4.512278999999921], [111.43871299999995, 4.512238000000082], [111.43865800000003, 4.5122800000000325]]], [[[111.43854800000003, 4.324276999999995], [111.43860300000011, 4.324318000000005], [111.43865899999997, 4.324276999999995], [111.43860300000011, 4.324235000000044], [111.43854800000003, 4.324276999999995]]], [[[111.43854600000003, 4.3211390000000165], [111.43860100000012, 4.321181000000138], [111.43865699999998, 4.3211390000000165], [111.43860100000012, 4.321098000000006], [111.43854600000003, 4.3211390000000165]]], [[[111.43854499999992, 4.320122000000083], [111.43860000000006, 4.320163000000093], [111.43865600000004, 4.320122000000083], [111.43860000000006, 4.320079999999962], [111.43854499999992, 4.320122000000083]]], [[[111.43854499999992, 4.319782000000032], [111.43860000000006, 4.319823999999926], [111.43865600000004, 4.319782000000032], [111.43860000000006, 4.319741000000022], [111.43854499999992, 4.319782000000032]]], [[[111.43854200000004, 4.314100999999994], [111.43859699999996, 4.314143000000115], [111.43865299999999, 4.314100999999994], [111.43859699999996, 4.314059999999984], [111.43854200000004, 4.314100999999994]]], [[[111.43854099999993, 4.312573999999927], [111.43859600000008, 4.312616000000048], [111.4386520000001, 4.312573999999927], [111.43859600000008, 4.312532999999917], [111.43854099999993, 4.312573999999927]]], [[[111.43854099999993, 4.312234999999987], [111.43859600000008, 4.312277000000051], [111.4386520000001, 4.312234999999987], [111.43859600000008, 4.312193999999977], [111.43854099999993, 4.312234999999987]]], [[[111.43853800000005, 4.307317000000012], [111.43859299999997, 4.307359000000133], [111.438649, 4.307317000000012], [111.43859299999997, 4.307276000000002], [111.43853800000005, 4.307317000000012]]], [[[111.43851099999995, 4.260761000000002], [111.4385660000001, 4.260803000000067], [111.43862200000007, 4.260761000000002], [111.4385660000001, 4.260719999999992], [111.43851099999995, 4.260761000000002]]], [[[111.43864300000007, 4.487348000000054], [111.43869799999999, 4.487390000000119], [111.43875400000002, 4.487348000000054], [111.43869799999999, 4.487306999999987], [111.43864300000007, 4.487348000000054]]], [[[111.43851200000006, 4.26144000000005], [111.43856699999998, 4.26148100000006], [111.438623, 4.26144000000005], [111.43856699999998, 4.261398000000099], [111.43851200000006, 4.26144000000005]]], [[[111.43853200000012, 4.297226000000137], [111.43858700000004, 4.297266999999977], [111.43864300000007, 4.297226000000137], [111.43858700000004, 4.2971840000000725], [111.43853200000012, 4.297226000000137]]], [[[111.43853200000012, 4.29688699999997], [111.43858700000004, 4.29692799999998], [111.43864300000007, 4.29688699999997], [111.43858700000004, 4.296845000000076], [111.43853200000012, 4.29688699999997]]], [[[111.43853200000012, 4.296547000000089], [111.43858700000004, 4.29658900000004], [111.43864300000007, 4.296547000000089], [111.43858700000004, 4.296506000000079], [111.43853200000012, 4.296547000000089]]], [[[111.43852900000002, 4.2923920000000635], [111.43858399999993, 4.292434000000128], [111.43863999999996, 4.2923920000000635], [111.43858399999993, 4.2923509999999965], [111.43852900000002, 4.2923920000000635]]], [[[111.4385170000001, 4.27034400000008], [111.43857200000002, 4.27038600000003], [111.43862800000005, 4.27034400000008], [111.43857200000002, 4.2703030000000695], [111.4385170000001, 4.27034400000008]]], [[[111.43852900000002, 4.29171400000007], [111.43858399999993, 4.29175500000008], [111.43863999999996, 4.29171400000007], [111.43858399999993, 4.291671999999949], [111.43852900000002, 4.29171400000007]]], [[[111.43852700000002, 4.2879819999999995], [111.438582, 4.288024000000121], [111.43863799999997, 4.2879819999999995], [111.438582, 4.287940999999989], [111.43852700000002, 4.2879819999999995]]], [[[111.43852399999997, 4.2835730000001035], [111.43857900000006, 4.283614000000114], [111.43863500000009, 4.2835730000001035], [111.43857900000006, 4.283530999999982], [111.43852399999997, 4.2835730000001035]]], [[[111.43852199999998, 4.279925999999932], [111.43857700000007, 4.2799680000000535], [111.4386330000001, 4.279925999999932], [111.43857700000007, 4.2798850000000925], [111.43852199999998, 4.279925999999932]]], [[[111.4385190000001, 4.273736000000099], [111.43857400000002, 4.273777000000109], [111.43863000000005, 4.273736000000099], [111.43857400000002, 4.273693999999978], [111.4385190000001, 4.273736000000099]]], [[[111.43852199999998, 4.2792479999999955], [111.43857700000007, 4.279289000000006], [111.4386330000001, 4.2792479999999955], [111.43857700000007, 4.279206000000045], [111.43852199999998, 4.2792479999999955]]], [[[111.43863099999993, 4.467251000000033], [111.43868600000008, 4.467292000000043], [111.43874200000005, 4.467251000000033], [111.43868600000008, 4.467209000000139], [111.43863099999993, 4.467251000000033]]], [[[111.43863099999993, 4.466571999999985], [111.43868600000008, 4.466614000000106], [111.43874200000005, 4.466571999999985], [111.43868600000008, 4.466530999999975], [111.43863099999993, 4.466571999999985]]], [[[111.43862899999993, 4.463689000000045], [111.43868400000008, 4.463731000000109], [111.43874000000005, 4.463689000000045], [111.43868400000008, 4.463647999999978], [111.43862899999993, 4.463689000000045]]], [[[111.43872900000008, 4.538524000000052], [111.43878500000005, 4.538481999999931], [111.43872900000008, 4.538441000000091], [111.43867399999993, 4.538483000000042], [111.43872900000008, 4.538524000000052]]], [[[111.43850600000007, 4.251942000000042], [111.43856099999999, 4.2519830000000525], [111.43861700000002, 4.251942000000042], [111.43856099999999, 4.2519000000000915], [111.43850600000007, 4.251942000000042]]], [[[111.43862699999994, 4.459533000000079], [111.43868200000009, 4.4595749999999725], [111.43873800000011, 4.459533000000079], [111.43868200000009, 4.459492000000012], [111.43862699999994, 4.459533000000079]]], [[[111.43862600000006, 4.45877100000007], [111.43868099999997, 4.45881200000008], [111.438737, 4.45877100000007], [111.43868099999997, 4.458728999999948], [111.43862600000006, 4.45877100000007]]], [[[111.43862600000006, 4.458092000000022], [111.43868099999997, 4.458133999999916], [111.438737, 4.458092000000022], [111.43868099999997, 4.458051000000012], [111.43862600000006, 4.458092000000022]]], [[[111.43862400000006, 4.455548000000022], [111.43867899999998, 4.455589999999972], [111.43873500000001, 4.455548000000022], [111.43867899999998, 4.455507000000011], [111.43862400000006, 4.455548000000022]]], [[[111.43862400000006, 4.454870000000085], [111.43867899999998, 4.454911000000095], [111.43873500000001, 4.454870000000085], [111.43867899999998, 4.454828000000134], [111.43862400000006, 4.454870000000085]]], [[[111.4385190000001, 4.274414000000036], [111.43857400000002, 4.2744559999999865], [111.43863000000005, 4.274414000000036], [111.43857400000002, 4.2743730000000255], [111.4385190000001, 4.274414000000036]]], [[[111.438623, 4.453174000000047], [111.4386780000001, 4.453215000000057], [111.43873400000012, 4.453174000000047], [111.4386780000001, 4.453131999999982], [111.438623, 4.453174000000047]]], [[[111.43862100000001, 4.450544999999977], [111.4386760000001, 4.450585999999987], [111.43873200000013, 4.450544999999977], [111.4386760000001, 4.450503000000026], [111.43862100000001, 4.450544999999977]]], [[[111.43862100000001, 4.449780999999973], [111.4386760000001, 4.4498230000000945], [111.43873200000013, 4.449780999999973], [111.4386760000001, 4.4497400000001335], [111.43862100000001, 4.449780999999973]]], [[[111.43862100000001, 4.4494430000000875], [111.4386760000001, 4.449484000000098], [111.43873200000013, 4.4494430000000875], [111.4386760000001, 4.449400999999966], [111.43862100000001, 4.4494430000000875]]], [[[111.43862000000007, 4.44876400000004], [111.43867500000005, 4.4488059999999905], [111.43873100000002, 4.44876400000004], [111.43867500000005, 4.4487230000000295], [111.43862000000007, 4.44876400000004]]], [[[111.43862000000007, 4.448086000000103], [111.43867500000005, 4.448127000000113], [111.43873100000002, 4.448086000000103], [111.43867500000005, 4.448043999999982], [111.43862000000007, 4.448086000000103]]], [[[111.43856899999997, 4.360996], [111.43862400000006, 4.36103700000001], [111.43868000000009, 4.360995000000116], [111.43862400000006, 4.360954000000106], [111.43856899999997, 4.360996]]], [[[111.43861800000013, 4.4449480000001245], [111.43867300000005, 4.444988999999964], [111.43872900000008, 4.4449480000001245], [111.43867300000005, 4.44490600000006], [111.43861800000013, 4.4449480000001245]]], [[[111.43861800000013, 4.444524000000058], [111.43867300000005, 4.444565999999952], [111.43872900000008, 4.444524000000058], [111.43867300000005, 4.444483000000048], [111.43861800000013, 4.444524000000058]]], [[[111.43848600000001, 4.2160709999999995], [111.43854099999993, 4.216113000000064], [111.43859699999996, 4.2160709999999995], [111.43854099999993, 4.216029999999989], [111.43848600000001, 4.2160709999999995]]], [[[111.43861600000014, 4.441132000000039], [111.43867100000006, 4.441173000000106], [111.43872700000009, 4.441132000000039], [111.43867100000006, 4.441089999999974], [111.43861600000014, 4.441132000000039]]], [[[111.43850800000007, 4.254317000000071], [111.43856299999999, 4.254358000000082], [111.43861900000002, 4.25431599999996], [111.43856299999999, 4.25427499999995], [111.43850800000007, 4.254317000000071]]], [[[111.43861500000003, 4.439521000000013], [111.43866999999995, 4.4395620000000235], [111.43872599999997, 4.439521000000013], [111.43866999999995, 4.439479000000063], [111.43861500000003, 4.439521000000013]]], [[[111.43850699999996, 4.25287400000002], [111.4385620000001, 4.252916000000141], [111.43861800000013, 4.25287400000002], [111.4385620000001, 4.25283300000001], [111.43850699999996, 4.25287400000002]]], [[[111.43861100000004, 4.4327370000000315], [111.43866600000001, 4.432778000000042], [111.43872199999998, 4.4327370000000315], [111.43866600000001, 4.432695000000081], [111.43861100000004, 4.4327370000000315]]], [[[111.438668, 4.528644999999983], [111.4387230000001, 4.528687000000048], [111.43877900000012, 4.528644999999983], [111.4387230000001, 4.528603999999916], [111.438668, 4.528644999999983]]], [[[111.43851599999999, 4.269326000000092], [111.43857100000014, 4.269367999999986], [111.43862699999994, 4.269326000000092], [111.43857100000014, 4.269285000000025], [111.43851599999999, 4.269326000000092]]], [[[111.43860999999998, 4.43137999999999], [111.43866500000007, 4.431421], [111.4387210000001, 4.43137999999999], [111.43866500000007, 4.431338000000096], [111.43860999999998, 4.43137999999999]]], [[[111.43860799999999, 4.4285820000001195], [111.43866300000008, 4.42862300000013], [111.4387190000001, 4.4285820000001195], [111.43866300000008, 4.428540000000055], [111.43860799999999, 4.4285820000001195]]], [[[111.43860799999999, 4.427903000000072], [111.43866300000008, 4.4279450000000224], [111.4387190000001, 4.427903000000072], [111.43866300000008, 4.4278620000000615], [111.43860799999999, 4.427903000000072]]], [[[111.43848300000013, 4.210644000000002], [111.43853800000005, 4.210686000000123], [111.43859400000008, 4.210644000000002], [111.43853800000005, 4.210602999999992], [111.43848300000013, 4.210644000000002]]], [[[111.438606, 4.4251050000000305], [111.43866100000014, 4.425146999999981], [111.43871699999994, 4.4251050000000305], [111.43866100000014, 4.42506400000002], [111.438606, 4.4251050000000305]]], [[[111.43873200000013, 4.5442899999999895], [111.43878799999999, 4.544248999999979], [111.43873200000013, 4.544207000000085], [111.43867700000004, 4.544248999999979], [111.43873200000013, 4.5442899999999895]]], [[[111.43873000000013, 4.540304999999989], [111.438786, 4.540263999999979], [111.43873000000013, 4.540222000000028], [111.43867500000005, 4.540263999999979], [111.43873000000013, 4.540304999999989]]], [[[111.438602, 4.417812000000026], [111.43865699999998, 4.4178530000000364], [111.43871299999995, 4.417812000000026], [111.43865699999998, 4.417770000000132], [111.438602, 4.417812000000026]]], [[[111.438602, 4.417132999999978], [111.43865699999998, 4.4171750000001], [111.43871299999995, 4.417132999999978], [111.43865699999998, 4.417092000000139], [111.438602, 4.417132999999978]]], [[[111.43848200000002, 4.207931000000087], [111.438537, 4.2079720000000975], [111.43859299999997, 4.207929999999976], [111.438537, 4.2078890000001365], [111.43848200000002, 4.207931000000087]]], [[[111.43859600000008, 4.408059999999978], [111.438651, 4.408100999999988], [111.43870700000002, 4.408059999999978], [111.438651, 4.408018000000027], [111.43859600000008, 4.408059999999978]]], [[[111.43859600000008, 4.4073810000001], [111.438651, 4.407423000000051], [111.43870700000002, 4.4073810000001], [111.438651, 4.40734000000009], [111.43859600000008, 4.4073810000001]]], [[[111.43859400000008, 4.403990000000022], [111.438649, 4.404031000000032], [111.43870500000003, 4.403990000000022], [111.438649, 4.403948000000071], [111.43859400000008, 4.403990000000022]]], [[[111.43862899999993, 4.464027999999985], [111.43868400000008, 4.464070000000106], [111.43874000000005, 4.464027999999985], [111.43868400000008, 4.463986999999975], [111.43862899999993, 4.464027999999985]]], [[[111.43859100000003, 4.399240000000134], [111.43864600000012, 4.399282000000028], [111.43870199999998, 4.399240000000134], [111.43864600000012, 4.399199000000067], [111.43859100000003, 4.399240000000134]]], [[[111.43865499999998, 4.506596999999999], [111.43871000000007, 4.506639000000121], [111.4387660000001, 4.506596999999999], [111.43871000000007, 4.506555999999989], [111.43865499999998, 4.506596999999999]]], [[[111.43858799999992, 4.394321999999988], [111.43864300000007, 4.3943629999999985], [111.43869900000004, 4.394321999999988], [111.43864300000007, 4.3942800000000375], [111.43858799999992, 4.394321999999988]]], [[[111.4386070000001, 4.426886000000138], [111.43866200000002, 4.426926999999978], [111.43871800000005, 4.426885000000027], [111.43866200000002, 4.426844000000017], [111.4386070000001, 4.426886000000138]]], [[[111.43856299999999, 4.351413000000093], [111.43861800000013, 4.351454999999987], [111.43867399999993, 4.351413000000093], [111.43861800000013, 4.351372000000083], [111.43856299999999, 4.351413000000093]]], [[[111.43858500000005, 4.388810000000092], [111.43863999999996, 4.388851000000102], [111.438696, 4.388810000000092], [111.43863999999996, 4.388768000000141], [111.43858500000005, 4.388810000000092]]], [[[111.43858300000005, 4.385418000000072], [111.43863799999997, 4.385460000000023], [111.438694, 4.385418000000072], [111.43863799999997, 4.385377000000062], [111.43858300000005, 4.385418000000072]]], [[[111.438582, 4.384145999999987], [111.43863700000009, 4.384188000000108], [111.43869300000011, 4.384145999999987], [111.43863700000009, 4.384104999999977], [111.438582, 4.384145999999987]]], [[[111.438582, 4.38346800000005], [111.43863700000009, 4.3835090000000605], [111.43869300000011, 4.38346800000005], [111.43863700000009, 4.3834260000000995], [111.438582, 4.38346800000005]]], [[[111.43858, 4.37973599999998], [111.43863500000009, 4.379778000000101], [111.43869100000012, 4.37973599999998], [111.43863500000009, 4.37969500000014], [111.43858, 4.37973599999998]]], [[[111.43857700000007, 4.37456300000008], [111.43863200000004, 4.374604999999974], [111.43868800000001, 4.37456300000008], [111.43863200000004, 4.37452200000007], [111.43857700000007, 4.37456300000008]]], [[[111.43857600000001, 4.373801000000071], [111.43863099999993, 4.3738420000000815], [111.43868700000013, 4.373801000000071], [111.43863099999993, 4.373759000000007], [111.43857600000001, 4.373801000000071]]], [[[111.43861900000002, 4.44613500000014], [111.43867399999993, 4.446177000000034], [111.43873000000013, 4.44613500000014], [111.43867399999993, 4.44609400000013], [111.43861900000002, 4.44613500000014]]], [[[111.43857400000002, 4.3703230000000985], [111.43862899999993, 4.3703649999999925], [111.43868500000013, 4.3703230000000985], [111.43862899999993, 4.370282000000088], [111.43857400000002, 4.3703230000000985]]], [[[111.43857100000014, 4.365066000000127], [111.43862600000006, 4.3651080000000775], [111.43868200000009, 4.365066000000127], [111.43862600000006, 4.3650250000001165], [111.43857100000014, 4.365066000000127]]], [[[111.43857000000003, 4.362691999999981], [111.438625, 4.362733000000048], [111.43868099999997, 4.362691999999981], [111.438625, 4.362650000000087], [111.43857000000003, 4.362691999999981]]], [[[111.43863200000004, 4.4679290000000265], [111.43868700000013, 4.467971000000091], [111.43874299999999, 4.4679290000000265], [111.43868700000013, 4.467888000000016], [111.43863200000004, 4.4679290000000265]]], [[[111.43856899999997, 4.361334999999997], [111.43862400000006, 4.361376000000007], [111.43868000000009, 4.361334999999997], [111.43862400000006, 4.361293000000046], [111.43856899999997, 4.361334999999997]]], [[[111.43856699999998, 4.357858000000078], [111.43862200000007, 4.357899999999972], [111.4386780000001, 4.357858000000078], [111.43862200000007, 4.357817000000068], [111.43856699999998, 4.357858000000078]]], [[[111.4385660000001, 4.356416000000138], [111.43862100000001, 4.356458000000032], [111.43867700000004, 4.356416000000138], [111.43862100000001, 4.356375000000128], [111.4385660000001, 4.356416000000138]]], [[[111.4385660000001, 4.355398000000093], [111.43862100000001, 4.355440000000044], [111.43867700000004, 4.355398000000093], [111.43862100000001, 4.355357000000083], [111.4385660000001, 4.355398000000093]]], [[[111.43856299999999, 4.3510740000000965], [111.43861800000013, 4.35111599999999], [111.43867399999993, 4.3510740000000965], [111.43861800000013, 4.351033000000086], [111.43856299999999, 4.3510740000000965]]], [[[111.43849599999999, 4.233965000000126], [111.43855100000007, 4.234006000000136], [111.4386070000001, 4.233965000000126], [111.43855100000007, 4.233923000000004], [111.43849599999999, 4.233965000000126]]], [[[111.43856099999999, 4.347173000000112], [111.43861600000014, 4.347215000000006], [111.43867199999994, 4.347173000000112], [111.43861600000014, 4.347132000000045], [111.43856099999999, 4.347173000000112]]], [[[111.43856000000011, 4.346156000000121], [111.43861500000003, 4.346196999999961], [111.43867100000006, 4.346156000000121], [111.43861500000003, 4.346114000000057], [111.43856000000011, 4.346156000000121]]], [[[111.43849100000006, 4.224127000000067], [111.43854600000003, 4.224169000000131], [111.438602, 4.224127000000067], [111.43854600000003, 4.224086000000057], [111.43849100000006, 4.224127000000067]]], [[[111.438535, 4.302229000000011], [111.43859000000009, 4.302270000000021], [111.43864600000012, 4.302229000000011], [111.43859000000009, 4.302187000000117], [111.438535, 4.302229000000011]]], [[[111.43850699999996, 4.253299000000027], [111.4385620000001, 4.253340000000037], [111.43861800000013, 4.253299000000027], [111.4385620000001, 4.253257000000133], [111.43850699999996, 4.253299000000027]]], [[[111.43850699999996, 4.252619999999979], [111.4385620000001, 4.2526620000001], [111.43861800000013, 4.252619999999979], [111.4385620000001, 4.252579000000139], [111.43850699999996, 4.252619999999979]]], [[[111.43850400000008, 4.247872000000086], [111.438559, 4.247913000000096], [111.43861500000003, 4.247872000000086], [111.438559, 4.247830000000135], [111.43850400000008, 4.247872000000086]]], [[[111.43850400000008, 4.247193000000038], [111.438559, 4.247235000000103], [111.43861500000003, 4.247193000000038], [111.438559, 4.247152000000028], [111.43850400000008, 4.247193000000038]]], [[[111.43850100000003, 4.242529000000104], [111.43855600000012, 4.242569999999944], [111.43861199999998, 4.242529000000104], [111.43855600000012, 4.24248700000004], [111.43850100000003, 4.242529000000104]]], [[[111.43863200000004, 4.469031000000086], [111.43868700000013, 4.46907299999998], [111.43874299999999, 4.469031000000086], [111.43868700000013, 4.468990000000019], [111.43863200000004, 4.469031000000086]]], [[[111.43850100000003, 4.241850000000056], [111.43855600000012, 4.241892000000007], [111.43861199999998, 4.241850000000056], [111.43855600000012, 4.241809000000046], [111.43850100000003, 4.241850000000056]]], [[[111.43849900000004, 4.238205000000107], [111.43855399999995, 4.238246000000117], [111.43860999999998, 4.238205000000107], [111.43855399999995, 4.238162999999986], [111.43849900000004, 4.238205000000107]]], [[[111.43849799999992, 4.237526000000059], [111.43855300000007, 4.23756800000001], [111.4386090000001, 4.237526000000059], [111.43855300000007, 4.237485000000049], [111.43849799999992, 4.237526000000059]]], [[[111.43859299999997, 4.40229400000004], [111.43864800000011, 4.4023350000000505], [111.43870399999992, 4.40229400000004], [111.43864800000011, 4.4022520000000895], [111.43859299999997, 4.40229400000004]]], [[[111.43849599999999, 4.232947000000081], [111.43855100000007, 4.232988000000091], [111.4386070000001, 4.232947000000081], [111.43855100000007, 4.232905000000017], [111.43849599999999, 4.232947000000081]]], [[[111.43849100000006, 4.224467000000118], [111.43854600000003, 4.224508000000128], [111.438602, 4.224467000000118], [111.43854600000003, 4.2244249999999965], [111.43849100000006, 4.224467000000118]]], [[[111.43858900000004, 4.395340000000033], [111.43864400000012, 4.395381000000043], [111.43869999999998, 4.395339000000092], [111.43864400000012, 4.395298000000082], [111.43858900000004, 4.395340000000033]]], [[[111.43863500000009, 4.473864999999989], [111.43869000000001, 4.4739059999999995], [111.43874600000004, 4.473864999999989], [111.43869000000001, 4.473823000000095], [111.43863500000009, 4.473864999999989]]], [[[111.43849, 4.2227700000000254], [111.43854499999992, 4.222811999999976], [111.43860100000012, 4.2227700000000254], [111.43854499999992, 4.222729000000015], [111.43849, 4.2227700000000254]]], [[[111.43862400000006, 4.454531000000088], [111.43867899999998, 4.454572000000098], [111.43873500000001, 4.454531000000088], [111.43867899999998, 4.454489000000137], [111.43862400000006, 4.454531000000088]]], [[[111.438488, 4.219971999999984], [111.43854299999992, 4.220014000000106], [111.43859900000012, 4.219971999999984], [111.43854299999992, 4.219930999999974], [111.438488, 4.219971999999984]]], [[[111.43860999999998, 4.43112600000012], [111.43866500000007, 4.43116700000013], [111.4387210000001, 4.43112600000012], [111.43866500000007, 4.4310839999999985], [111.43860999999998, 4.43112600000012]]], [[[111.438488, 4.219379000000117], [111.43854299999992, 4.219420000000127], [111.43859900000012, 4.219379000000117], [111.43854299999992, 4.219337000000053], [111.438488, 4.219379000000117]]], [[[111.438488, 4.218615], [111.43854299999992, 4.218657000000064], [111.43859900000012, 4.218615], [111.43854299999992, 4.218573999999933], [111.438488, 4.218615]]], [[[111.43848500000013, 4.214290000000062], [111.43854000000005, 4.214331999999956], [111.43859600000008, 4.214290000000062], [111.43854000000005, 4.214249000000052], [111.43848500000013, 4.214290000000062]]], [[[111.43848300000013, 4.2108989999999835], [111.43853800000005, 4.210939999999994], [111.43859400000008, 4.2108989999999835], [111.43853800000005, 4.210857000000033], [111.43848300000013, 4.2108989999999835]]], [[[111.43859600000008, 4.407720999999981], [111.438651, 4.407761999999991], [111.43870700000002, 4.407720000000097], [111.438651, 4.407679000000087], [111.43859600000008, 4.407720999999981]]], [[[111.43848100000014, 4.206913000000043], [111.43853600000006, 4.206954000000053], [111.43859200000009, 4.206913000000043], [111.43853600000006, 4.206870999999921], [111.43848100000014, 4.206913000000043]]], [[[111.43848000000008, 4.205556000000001], [111.438535, 4.205597000000068], [111.43859100000003, 4.205556000000001], [111.438535, 4.205514000000107], [111.43848000000008, 4.205556000000001]]], [[[111.43864400000012, 4.488027000000102], [111.43869900000004, 4.488068000000112], [111.43875500000007, 4.488027000000102], [111.43869900000004, 4.487984999999981], [111.43864400000012, 4.488027000000102]]], [[[111.43864600000012, 4.491333000000054], [111.43870100000004, 4.491375000000005], [111.43875700000007, 4.491333000000054], [111.43870100000004, 4.491292000000044], [111.43864600000012, 4.491333000000054]]], [[[111.43864600000012, 4.491673000000105], [111.43870100000004, 4.491713999999945], [111.43875700000007, 4.491673000000105], [111.43870100000004, 4.491631000000041], [111.43864600000012, 4.491673000000105]]], [[[111.438649, 4.496845000000121], [111.43870399999992, 4.496887000000072], [111.43875999999995, 4.496845000000121], [111.43870399999992, 4.496804000000111], [111.438649, 4.496845000000121]]], [[[111.438649, 4.497185000000002], [111.43870399999992, 4.497226000000012], [111.43875999999995, 4.497185000000002], [111.43870399999992, 4.497143000000108], [111.438649, 4.497185000000002]]], [[[111.438649, 4.4975239999999985], [111.43870399999992, 4.497565000000009], [111.43875999999995, 4.4975239999999985], [111.43870399999992, 4.497482000000105], [111.438649, 4.4975239999999985]]], [[[111.43863999999996, 4.482006000000013], [111.43869500000011, 4.482047000000023], [111.43875100000008, 4.482006000000013], [111.43869500000011, 4.481964000000062], [111.43863999999996, 4.482006000000013]]], [[[111.4386520000001, 4.501595000000066], [111.43870700000002, 4.501636000000076], [111.43876300000005, 4.501595000000066], [111.43870700000002, 4.501553000000115], [111.4386520000001, 4.501595000000066]]], [[[111.43861199999998, 4.435196000000076], [111.43866700000007, 4.435237000000086], [111.4387230000001, 4.435196000000076], [111.43866700000007, 4.4351539999999545], [111.43861199999998, 4.435196000000076]]], [[[111.43866900000006, 4.530426999999975], [111.43872399999998, 4.530467999999985], [111.43878000000001, 4.530426999999975], [111.43872399999998, 4.530385000000024], [111.43866900000006, 4.530426999999975]]], [[[111.43865699999998, 4.510583000000111], [111.43871200000007, 4.510625000000061], [111.4387680000001, 4.510583000000111], [111.43871200000007, 4.5105420000001], [111.43865699999998, 4.510583000000111]]], [[[111.43859400000008, 4.403651000000025], [111.438649, 4.403692000000035], [111.43870500000003, 4.403650000000141], [111.438649, 4.403609000000131], [111.43859400000008, 4.403651000000025]]], [[[111.43865800000003, 4.511939999999981], [111.43871299999995, 4.511982000000046], [111.43876899999998, 4.511939999999981], [111.43871299999995, 4.511899000000142], [111.43865800000003, 4.511939999999981]]], [[[111.43866100000014, 4.516688999999985], [111.43871600000006, 4.5167299999999955], [111.43877200000009, 4.516688999999985], [111.43871600000006, 4.5166470000000345], [111.43866100000014, 4.516688999999985]]], [[[111.43851400000005, 4.265341000000035], [111.43856899999997, 4.265382000000045], [111.438625, 4.265341000000035], [111.43856899999997, 4.265299000000141], [111.43851400000005, 4.265341000000035]]], [[[111.43866500000007, 4.523642999999993], [111.43872000000005, 4.523684000000003], [111.43877600000002, 4.523642999999993], [111.43872000000005, 4.523601000000042], [111.43866500000007, 4.523642999999993]]], [[[111.43864100000008, 4.483362999999997], [111.438696, 4.483404000000007], [111.43875200000002, 4.483362000000113], [111.438696, 4.483321000000103], [111.43864100000008, 4.483362999999997]]], [[[111.43866500000007, 4.524320999999929], [111.43872000000005, 4.524363000000051], [111.43877600000002, 4.524320999999929], [111.43872000000005, 4.52428000000009], [111.43866500000007, 4.524320999999929]]], [[[111.438668, 4.528985000000034], [111.4387230000001, 4.529026000000044], [111.43877900000012, 4.528985000000034], [111.4387230000001, 4.528943000000083], [111.438668, 4.528985000000034]]], [[[111.43866900000006, 4.529662999999971], [111.43872399999998, 4.529705000000092], [111.43878000000001, 4.529662999999971], [111.43872399999998, 4.529622000000131], [111.43866900000006, 4.529662999999971]]], [[[111.43864100000008, 4.4830230000001166], [111.438696, 4.4830650000000105], [111.43875200000002, 4.4830230000001166], [111.438696, 4.482982000000106], [111.43864100000008, 4.4830230000001166]]], [[[111.43857200000002, 4.366593000000023], [111.43862699999994, 4.366634000000033], [111.43868299999997, 4.366592000000082], [111.43862699999994, 4.366551000000072], [111.43857200000002, 4.366593000000023]]], [[[111.43865000000011, 4.498542000000043], [111.43870500000003, 4.498583000000053], [111.43876100000006, 4.498542000000043], [111.43870500000003, 4.498500000000092], [111.43865000000011, 4.498542000000043]]], [[[111.43863799999997, 4.4782749999999965], [111.43869300000011, 4.478316000000007], [111.43874899999992, 4.4782749999999965], [111.43869300000011, 4.4782330000001025], [111.43863799999997, 4.4782749999999965]]], [[[111.43873200000013, 4.543950999999993], [111.43878799999999, 4.543909000000099], [111.43873200000013, 4.543868000000089], [111.43867700000004, 4.543909999999983], [111.43873200000013, 4.543950999999993]]], [[[111.43864100000008, 4.4843799999999305], [111.438696, 4.484422000000052], [111.43875200000002, 4.4843799999999305], [111.438696, 4.484339000000091], [111.43864100000008, 4.4843799999999305]]], [[[111.43872900000008, 4.538863000000049], [111.43878500000005, 4.538822000000039], [111.43872900000008, 4.538780000000088], [111.43867399999993, 4.538822000000039], [111.43872900000008, 4.538863000000049]]], [[[111.43851599999999, 4.269665999999972], [111.43857100000014, 4.269706999999983], [111.43862699999994, 4.269665999999972], [111.43857100000014, 4.269624000000022], [111.43851599999999, 4.269665999999972]]], [[[111.43856899999997, 4.3620129999999335], [111.43862400000006, 4.362055000000055], [111.43868000000009, 4.3620129999999335], [111.43862400000006, 4.361971999999923], [111.43856899999997, 4.3620129999999335]]], [[[111.43849900000004, 4.237865000000056], [111.43855300000007, 4.23790699999995], [111.4386090000001, 4.237865000000056], [111.43855300000007, 4.237824000000046], [111.43849900000004, 4.237865000000056]]], [[[111.43866100000014, 4.5161800000001335], [111.43871600000006, 4.5162220000000275], [111.43877099999997, 4.5161800000001335], [111.43871499999995, 4.516139000000123], [111.43866100000014, 4.5161800000001335]]], [[[111.43851999999998, 4.2750930000000835], [111.43857500000013, 4.275133999999923], [111.43863000000005, 4.2750930000000835], [111.43857500000013, 4.275051000000019], [111.43851999999998, 4.2750930000000835]]], [[[111.43857500000013, 4.370662999999979], [111.43863000000005, 4.370703999999989], [111.43868500000013, 4.370662999999979], [111.43862899999993, 4.370621000000028], [111.43857500000013, 4.370662999999979]]], [[[111.43848400000002, 4.21123799999998], [111.43853899999999, 4.2112789999999904], [111.43859400000008, 4.21123799999998], [111.43853800000005, 4.2111960000000295], [111.43848400000002, 4.21123799999998]]], [[[111.43849599999999, 4.232608000000084], [111.43855100000007, 4.232648999999924], [111.438606, 4.232608000000084], [111.43854999999996, 4.23256600000002], [111.43849599999999, 4.232608000000084]]], [[[111.43859400000008, 4.403310999999974], [111.438649, 4.403353000000095], [111.43870399999992, 4.403310999999974], [111.438649, 4.403270000000134], [111.43859400000008, 4.403310999999974]]], [[[111.438647, 4.492860000000121], [111.43870199999998, 4.492902000000015], [111.43875700000007, 4.492860000000121], [111.43870199999998, 4.492819000000111], [111.438647, 4.492860000000121]]], [[[111.43862100000001, 4.449104000000091], [111.4386760000001, 4.44914499999993], [111.43873100000002, 4.449104000000091], [111.43867500000005, 4.449062000000026], [111.43862100000001, 4.449104000000091]]], [[[111.43853800000005, 4.306639000000075], [111.43859299999997, 4.306680000000085], [111.43864800000011, 4.306639000000075], [111.43859299999997, 4.306597000000124], [111.43853800000005, 4.306639000000075]]], [[[111.43861300000003, 4.435535000000073], [111.438668, 4.435576000000083], [111.4387230000001, 4.435535000000073], [111.43866700000007, 4.435493000000122], [111.43861300000003, 4.435535000000073]]], [[[111.43860300000011, 4.418575000000089], [111.43865800000003, 4.41861700000004], [111.43871299999995, 4.418575000000089], [111.43865699999998, 4.418534000000079], [111.43860300000011, 4.418575000000089]]], [[[111.438668, 4.52796699999999], [111.4387230000001, 4.528009000000111], [111.43877800000001, 4.52796699999999], [111.4387230000001, 4.5279259999999795], [111.438668, 4.52796699999999]]], [[[111.438533, 4.2979040000001305], [111.43858799999992, 4.2979460000000245], [111.43864300000007, 4.2979040000001305], [111.43858799999992, 4.29786300000012], [111.438533, 4.2979040000001305]]], [[[111.43855500000006, 4.3363180000000625], [111.43860999999998, 4.336360000000013], [111.43866500000007, 4.3363180000000625], [111.43860999999998, 4.336277000000052], [111.43855500000006, 4.3363180000000625]]], [[[111.4385190000001, 4.273396000000048], [111.43857400000002, 4.273438000000112], [111.43862899999993, 4.273396000000048], [111.43857400000002, 4.273354999999981], [111.4385190000001, 4.273396000000048]]], [[[111.43865499999998, 4.506258000000059], [111.43871000000007, 4.506300000000124], [111.43876499999999, 4.506258000000059], [111.43871000000007, 4.506216999999992], [111.43865499999998, 4.506258000000059]]], [[[111.43865800000003, 4.511261999999988], [111.43871299999995, 4.511302999999998], [111.4387680000001, 4.511261999999988], [111.43871299999995, 4.511220000000094], [111.43865800000003, 4.511261999999988]]], [[[111.43862400000006, 4.454191000000037], [111.43867899999998, 4.454233000000102], [111.43873400000012, 4.454191000000037], [111.4386780000001, 4.45414999999997], [111.43862400000006, 4.454191000000037]]], [[[111.43854600000003, 4.32046100000008], [111.43860000000006, 4.32050200000009], [111.43865600000004, 4.32046100000008], [111.43860000000006, 4.320419000000129], [111.43854600000003, 4.32046100000008]]], [[[111.438535, 4.301296000000093], [111.43859000000009, 4.301337000000103], [111.43864500000001, 4.301296000000093], [111.43858900000004, 4.3012540000000286], [111.438535, 4.301296000000093]]], [[[111.43853000000013, 4.292732000000115], [111.43858500000005, 4.292773000000125], [111.43863999999996, 4.292732000000115], [111.43858500000005, 4.292689999999993], [111.43853000000013, 4.292732000000115]]], [[[111.43856099999999, 4.346495000000118], [111.43861600000014, 4.346536000000128], [111.43867100000006, 4.346495000000118], [111.43861500000003, 4.346452999999997], [111.43856099999999, 4.346495000000118]]], [[[111.43855300000007, 4.332757000000129], [111.43860799999999, 4.332798000000139], [111.43866300000008, 4.332757000000129], [111.43860799999999, 4.332715000000007], [111.43855300000007, 4.332757000000129]]], [[[111.4385640000001, 4.351752999999974], [111.43861900000002, 4.351793999999984], [111.43867399999993, 4.351752999999974], [111.43861800000013, 4.351711000000023], [111.4385640000001, 4.351752999999974]]], [[[111.43852800000013, 4.28917000000007], [111.43858300000005, 4.28921100000008], [111.43863799999997, 4.28917000000007], [111.43858300000005, 4.289128000000005], [111.43852800000013, 4.28917000000007]]], [[[111.43863799999997, 4.477851000000101], [111.43869300000011, 4.477892000000111], [111.43874800000003, 4.477850000000046], [111.43869300000011, 4.477808999999979], [111.43863799999997, 4.477851000000101]]], [[[111.43858799999992, 4.392966000000058], [111.43864300000007, 4.393007000000068], [111.43869799999999, 4.392966000000058], [111.43864200000013, 4.392924000000107], [111.43858799999992, 4.392966000000058]]], [[[111.43848900000012, 4.220312000000035], [111.43854400000004, 4.2203530000000455], [111.43859900000012, 4.220312000000035], [111.43854400000004, 4.220270000000141], [111.43848900000012, 4.220312000000035]]], [[[111.43852900000002, 4.291035000000022], [111.43858399999993, 4.291076999999973], [111.43863900000008, 4.291035000000022], [111.43858399999993, 4.290994000000012], [111.43852900000002, 4.291035000000022]]], [[[111.43853899999999, 4.308333999999945], [111.43859400000008, 4.308376000000067], [111.438649, 4.308333999999945], [111.43859299999997, 4.308293000000106], [111.43853899999999, 4.308333999999945]]], [[[111.43850100000003, 4.2415960000000155], [111.43855600000012, 4.241638000000137], [111.43861100000004, 4.2415960000000155], [111.43855600000012, 4.241555000000005], [111.43850100000003, 4.2415960000000155]]], [[[111.43866500000007, 4.5229640000001154], [111.43872000000005, 4.523006000000009], [111.43877500000013, 4.5229640000001154], [111.43872000000005, 4.522923000000105], [111.43866500000007, 4.5229640000001154]]], [[[111.43865299999999, 4.50295200000005], [111.43870800000008, 4.50299300000006], [111.43876300000005, 4.50295200000005], [111.43870800000008, 4.502909999999929], [111.43865299999999, 4.50295200000005]]], [[[111.43860799999999, 4.427225000000135], [111.43866300000008, 4.427265999999975], [111.43871800000005, 4.427225000000135], [111.43866300000008, 4.427183000000014], [111.43860799999999, 4.427225000000135]]], [[[111.43856699999998, 4.357095000000015], [111.43862200000007, 4.357136000000025], [111.43867700000004, 4.357095000000015], [111.43862200000007, 4.3570530000000645], [111.43856699999998, 4.357095000000015]]], [[[111.43867199999994, 4.534582], [111.43872700000009, 4.534623000000067], [111.438782, 4.534582], [111.43872700000009, 4.534540000000106], [111.43867199999994, 4.534582]]], [[[111.43863599999997, 4.474542999999983], [111.43869100000012, 4.474585000000047], [111.43874600000004, 4.474542999999983], [111.43869100000012, 4.474501999999916], [111.43863599999997, 4.474542999999983]]], [[[111.4386520000001, 4.501256000000069], [111.43870700000002, 4.501297000000079], [111.43876200000011, 4.501254999999958], [111.43870700000002, 4.501214000000118], [111.4386520000001, 4.501256000000069]]], [[[111.43854900000008, 4.325804000000005], [111.438604, 4.325845000000015], [111.43865899999997, 4.325804000000005], [111.438604, 4.325762000000111], [111.43854900000008, 4.325804000000005]]], [[[111.43853200000012, 4.296207999999922], [111.43858700000004, 4.296250000000043], [111.43864200000013, 4.296207999999922], [111.43858700000004, 4.296167000000082], [111.43853200000012, 4.296207999999922]]], [[[111.43857100000014, 4.365406000000007], [111.43862600000006, 4.365446000000134], [111.43868200000009, 4.365406000000007], [111.43862600000006, 4.365364000000113], [111.43857100000014, 4.365406000000007]]], [[[111.43857700000007, 4.374819000000116], [111.43863200000004, 4.374859000000072], [111.43868800000001, 4.374818000000005], [111.43863200000004, 4.374776999999995], [111.43857700000007, 4.374819000000116]]], [[[111.43849399999999, 4.230147999999986], [111.43854900000008, 4.230188999999996], [111.43860500000011, 4.230147999999986], [111.43854900000008, 4.230106999999919], [111.43849399999999, 4.230147999999986]]], [[[111.43849399999999, 4.229810000000043], [111.43854900000008, 4.229849999999999], [111.43860500000011, 4.229808999999989], [111.43854900000008, 4.229767999999979], [111.43849399999999, 4.229810000000043]]], [[[111.43858799999992, 4.3939829999999915], [111.43864300000007, 4.394024000000002], [111.43869900000004, 4.3939829999999915], [111.43864300000007, 4.393941999999981], [111.43858799999992, 4.3939829999999915]]], [[[111.43857900000006, 4.378719000000046], [111.43863400000004, 4.378760000000057], [111.43869000000001, 4.378719000000046], [111.43863400000004, 4.378678000000036], [111.43857900000006, 4.378719000000046]]], [[[111.4385170000001, 4.271022000000073], [111.43857200000002, 4.271063000000083], [111.43862800000005, 4.271022000000073], [111.43857200000002, 4.270981000000063], [111.4385170000001, 4.271022000000073]]], [[[111.43857900000006, 4.379058000000043], [111.43863400000004, 4.379099000000053], [111.43869000000001, 4.379058000000043], [111.43863400000004, 4.379016999999976], [111.43857900000006, 4.379058000000043]]], [[[111.43853800000005, 4.307656000000009], [111.43859299999997, 4.307697000000019], [111.438649, 4.307656000000009], [111.43859299999997, 4.307614999999998], [111.43853800000005, 4.307656000000009]]], [[[111.43852800000013, 4.289509000000066], [111.43858300000005, 4.289550000000077], [111.43863900000008, 4.289509000000066], [111.43858300000005, 4.289468000000056], [111.43852800000013, 4.289509000000066]]], [[[111.43864400000012, 4.488705000000039], [111.43869900000004, 4.488746000000049], [111.43875500000007, 4.488705000000039], [111.43869900000004, 4.488664000000028], [111.43864400000012, 4.488705000000039]]], [[[111.43858, 4.380670000000009], [111.43863500000009, 4.380710000000079], [111.43869100000012, 4.380670000000009], [111.43863500000009, 4.380628000000058], [111.43858, 4.380670000000009]]], [[[111.43849900000004, 4.238883000000101], [111.43855399999995, 4.238924000000111], [111.43860999999998, 4.238883000000101], [111.43855399999995, 4.238842000000034], [111.43849900000004, 4.238883000000101]]], [[[111.43858500000005, 4.388132000000098], [111.43863999999996, 4.388172999999938], [111.438696, 4.388132000000098], [111.43863999999996, 4.388091000000088], [111.43858500000005, 4.388132000000098]]], [[[111.43860300000011, 4.419593000000134], [111.43865800000003, 4.419633999999974], [111.43871400000006, 4.419593000000134], [111.43865800000003, 4.419552000000124], [111.43860300000011, 4.419593000000134]]], [[[111.43863900000008, 4.479630999999927], [111.438694, 4.479671999999937], [111.43875000000003, 4.479630999999927], [111.438694, 4.479590000000087], [111.43863900000008, 4.479630999999927]]], [[[111.43849399999999, 4.229469999999992], [111.43854900000008, 4.229511000000002], [111.43860500000011, 4.229469999999992], [111.43854900000008, 4.229428999999982], [111.43849399999999, 4.229469999999992]]], [[[111.43865400000004, 4.505241000000069], [111.43870900000002, 4.505282000000079], [111.43876499999999, 4.505241000000069], [111.43870900000002, 4.505200000000059], [111.43865400000004, 4.505241000000069]]], [[[111.43859400000008, 4.404667999999958], [111.438649, 4.404709000000025], [111.43870500000003, 4.404667999999958], [111.438649, 4.404626999999948], [111.43859400000008, 4.404667999999958]]], [[[111.4385640000001, 4.352431000000081], [111.43861900000002, 4.352471999999921], [111.43867500000005, 4.352431000000081], [111.43861900000002, 4.352390000000071], [111.4385640000001, 4.352431000000081]]], [[[111.43858799999992, 4.393643999999995], [111.43864300000007, 4.393685000000005], [111.43869900000004, 4.393643999999995], [111.43864300000007, 4.393602999999985], [111.43858799999992, 4.393643999999995]]], [[[111.43861199999998, 4.434856000000025], [111.43866700000007, 4.434897999999919], [111.4387230000001, 4.434856000000025], [111.43866700000007, 4.434816000000069], [111.43861199999998, 4.434856000000025]]], [[[111.43857400000002, 4.369645000000105], [111.43862899999993, 4.369686000000115], [111.43868500000013, 4.369645000000105], [111.43862899999993, 4.369604000000095], [111.43857400000002, 4.369645000000105]]], [[[111.43855800000011, 4.34174500000006], [111.43861300000003, 4.341787000000124], [111.43866900000006, 4.34174500000006], [111.43861300000003, 4.341705000000104], [111.43855800000011, 4.34174500000006]]], [[[111.43857700000007, 4.375158000000113], [111.43863200000004, 4.375198000000012], [111.43868800000001, 4.375158000000113], [111.43863200000004, 4.375115999999991], [111.43857700000007, 4.375158000000113]]], [[[111.43860000000006, 4.414419000000123], [111.43865499999998, 4.414461000000074], [111.43871100000001, 4.414419000000123], [111.43865499999998, 4.414379000000054], [111.43860000000006, 4.414419000000123]]], [[[111.4386070000001, 4.425444000000027], [111.43866200000002, 4.425485000000037], [111.43871699999994, 4.425444000000027], [111.43866200000002, 4.425403000000017], [111.4386070000001, 4.425444000000027]]], [[[111.43855800000011, 4.3414070000001175], [111.43861300000003, 4.341447999999957], [111.438668, 4.3414070000001175], [111.43861300000003, 4.341366000000107], [111.43855800000011, 4.3414070000001175]]], [[[111.438649, 4.496168000000068], [111.43870399999992, 4.496208000000024], [111.43875900000006, 4.496168000000068], [111.43870300000003, 4.496125999999947], [111.438649, 4.496168000000068]]], [[[111.43854099999993, 4.31189599999999], [111.43859600000008, 4.311937], [111.438651, 4.31189599999999], [111.43859600000008, 4.31185499999998], [111.43854099999993, 4.31189599999999]]]], + "type": "multipolygon" + } + ], + "type": "geometrycollection" +} \ No newline at end of file diff --git a/indexer-core/src/test/resources/geo/decimator/geometrycollection_point.json b/indexer-core/src/test/resources/geo/decimator/geometrycollection_point.json new file mode 100644 index 0000000000000000000000000000000000000000..dbf76baec9ec2c8077039adad28ccc1bda5ac95f --- /dev/null +++ b/indexer-core/src/test/resources/geo/decimator/geometrycollection_point.json @@ -0,0 +1,8 @@ +{ + "geometries": [{ + "coordinates": [104.095752, 6.3154210000001285, 100.0], + "type": "point" + } + ], + "type": "geometrycollection" +} diff --git a/indexer-core/src/test/resources/geo/decimator/geometrycollection_polygon.json b/indexer-core/src/test/resources/geo/decimator/geometrycollection_polygon.json new file mode 100644 index 0000000000000000000000000000000000000000..c99ebe5084e59d99d6664defacefbb8a4332892b --- /dev/null +++ b/indexer-core/src/test/resources/geo/decimator/geometrycollection_polygon.json @@ -0,0 +1,8 @@ +{ + "geometries": [{ + "coordinates": [[[104.07197000000014, 5.092352000000005], [104.17093500000004, 4.912466999999992], [104.1873700000001, 4.921559000000002], [104.18752300000011, 4.921515000000056], [104.35131699999994, 5.01209700000004], [104.35192899999998, 5.011919000000091], [104.35202800000002, 5.011974000000009], [104.35248800000005, 5.01184000000012], [104.35258599999997, 5.011895000000038], [104.35319900000007, 5.01171700000009], [104.35329800000011, 5.011772000000008], [104.35375700000003, 5.011639000000002], [104.35385600000006, 5.011693000000037], [104.35431599999993, 5.011560000000031], [104.35441500000013, 5.0116140000000655], [104.35502699999995, 5.011437000000001], [104.35512599999998, 5.011491000000035], [104.35558600000002, 5.01135800000003], [104.355684, 5.011413000000118], [104.3562970000001, 5.011234999999999], [104.35639600000007, 5.011288999999977], [104.35685500000005, 5.011156000000028], [104.35695400000009, 5.011211000000117], [104.35756700000002, 5.011032999999941], [104.35766500000011, 5.011088000000086], [104.35812499999997, 5.01095399999997], [104.358224, 5.011009000000115], [104.35868299999998, 5.0108750000000555], [104.35878199999996, 5.0109299999999735], [104.35939500000006, 5.010752000000139], [104.3594940000001, 5.0108070000001135], [104.35995300000008, 5.010674000000108], [104.36005200000005, 5.010727999999972], [104.36066499999998, 5.010550000000137], [104.36076300000013, 5.010605000000055], [104.361223, 5.010472000000107], [104.36132199999997, 5.010526000000084], [104.36178099999995, 5.0103930000001355], [104.36187999999999, 5.0104480000000535], [104.36249300000009, 5.010270000000048], [104.36259100000001, 5.010324000000082], [104.36305100000004, 5.010191000000077], [104.36315000000008, 5.010246000000052], [104.36376200000007, 5.010068000000047], [104.3638610000001, 5.010122999999965], [104.36432099999996, 5.0099890000000755], [104.36441900000011, 5.0100439999999935], [104.36503199999999, 5.009866000000045], [104.36513100000002, 5.0099210000001335], [104.36559, 5.009787000000074], [104.36568900000003, 5.009841999999992], [104.36614900000006, 5.009708999999987], [104.36624699999999, 5.009763000000021], [104.36686000000009, 5.009585000000072], [104.36695900000012, 5.00963999999999], [104.3674180000001, 5.009506999999985], [104.36751700000008, 5.009561000000019], [104.36813000000001, 5.009383000000014], [104.36822900000004, 5.009437999999989], [104.36868800000002, 5.0093049999999835], [104.368787, 5.009359000000018], [104.3694000000001, 5.0091820000001235], [104.36949800000002, 5.00923599999993], [104.36995800000011, 5.009102999999982], [104.37005699999992, 5.009157000000016], [104.37051600000007, 5.009024000000011], [104.3706150000001, 5.009079000000099], [104.37122800000003, 5.008900999999923], [104.37132600000012, 5.008956000000069], [104.37178599999999, 5.008822000000009], [104.37188500000002, 5.008877000000098], [104.37249700000001, 5.008699000000092], [104.37259600000004, 5.008754000000067], [104.37305600000008, 5.008619999999951], [104.37315400000006, 5.008675000000096], [104.37376699999993, 5.008497000000091], [104.37386600000013, 5.008552000000009], [104.37432500000011, 5.00841800000012], [104.37442399999998, 5.008473000000038], [104.37488400000001, 5.008340000000089], [104.3749820000001, 5.0083940000001235], [104.37559500000003, 5.008216000000118], [104.37569400000007, 5.008271000000036], [104.37615299999999, 5.008138000000031], [104.37625200000002, 5.008192000000065], [104.37686500000012, 5.008015], [104.37696399999999, 5.0080690000000345], [104.37742300000014, 5.007936000000029], [104.37752199999994, 5.0079900000000634], [104.37813500000004, 5.007812999999999], [104.37823299999997, 5.007867000000033], [104.37869300000006, 5.007734000000028], [104.37879200000003, 5.007788000000062], [104.37925100000001, 5.007655000000057], [104.37935000000004, 5.007709999999975], [104.37996299999998, 5.007532000000026], [104.38006100000007, 5.007587000000115], [104.3805210000001, 5.007453000000055], [104.38062000000014, 5.007507999999973], [104.38123199999995, 5.007329999999968], [104.38133099999999, 5.007385000000113], [104.38179100000002, 5.007251000000053], [104.38188899999994, 5.007306000000142], [104.38250200000004, 5.007128000000137], [104.38260100000008, 5.007183000000111], [104.38306000000006, 5.007048999999995], [104.38315900000009, 5.00710400000014], [104.38361900000012, 5.006971000000135], [104.38371700000005, 5.007024999999999], [104.38432999999998, 5.006846999999993], [104.38442900000001, 5.006902000000082], [104.38488799999993, 5.0067690000001335], [104.38498700000014, 5.00682299999994], [104.38560000000007, 5.006644999999992], [104.3856990000001, 5.00670000000008], [104.38615800000002, 5.006567000000075], [104.38625700000006, 5.006621000000109], [104.38686999999999, 5.0064440000000445], [104.38696800000008, 5.006498000000079], [104.38742799999994, 5.0063650000000735], [104.38752699999998, 5.006419000000108], [104.38798600000013, 5.006286000000102], [104.38808499999999, 5.006341000000077], [104.38869800000009, 5.006163000000072], [104.38879600000001, 5.006217000000106], [104.38925600000005, 5.006084000000101], [104.38935500000008, 5.006139000000019], [104.38996700000007, 5.00596100000007], [104.3900660000001, 5.006015999999988], [104.39052600000014, 5.005882000000099], [104.39062400000006, 5.005937000000017], [104.39123699999999, 5.005759000000012], [104.39133600000002, 5.005813999999987], [104.391795, 5.005680000000098], [104.39189399999998, 5.005735000000016], [104.39235400000007, 5.0056010000001265], [104.39245199999999, 5.0056560000000445], [104.39306500000009, 5.005478000000039], [104.39316400000013, 5.005533000000014], [104.39362300000005, 5.005400000000009], [104.39372200000008, 5.005454000000043], [104.39433500000001, 5.005276000000038], [104.39443400000005, 5.005330999999956], [104.39489299999997, 5.005198000000007], [104.394992, 5.0052519999999845], [104.3956050000001, 5.005074000000036], [104.39570300000003, 5.0051290000001245], [104.39616300000006, 5.004995999999949], [104.39626200000009, 5.005049999999983], [104.39672100000007, 5.004916999999978], [104.3968200000001, 5.004971000000012], [104.39743299999998, 5.004794000000118], [104.39753100000013, 5.004847999999981], [104.39799099999999, 5.004714999999976], [104.39809000000002, 5.00476900000001], [104.39870200000001, 5.004592000000116], [104.39880100000005, 5.00464599999998], [104.39926100000008, 5.0045129999999745], [104.399359, 5.004568000000063], [104.3999720000001, 5.0043900000001145], [104.40007100000014, 5.004443999999921], [104.40053000000012, 5.004310999999973], [104.40062899999992, 5.004366000000061], [104.40108900000001, 5.004232000000002], [104.4011870000001, 5.00428700000009], [104.40180000000004, 5.004109000000142], [104.40189900000001, 5.00416400000006], [104.40235799999999, 5.00403], [104.40245700000003, 5.004085000000089], [104.40307000000013, 5.003907000000083], [104.40316899999993, 5.003962000000058], [104.40362800000008, 5.003827999999942], [104.40372700000012, 5.003883000000087], [104.40434000000005, 5.003705000000082], [104.40443800000014, 5.00376], [104.404898, 5.003626000000111], [104.40499700000004, 5.003681000000029], [104.40545600000002, 5.00354800000008], [104.40555500000005, 5.0036020000001145], [104.40616799999992, 5.003424000000109], [104.40626600000007, 5.003479000000027], [104.4067260000001, 5.003346000000022], [104.40682500000014, 5.003400000000056], [104.40743700000013, 5.0032220000001075], [104.407536, 5.0032770000000255], [104.40799600000003, 5.00314400000002], [104.40809399999995, 5.003198000000054], [104.40855399999998, 5.003065000000049], [104.40865300000002, 5.003119000000083], [104.40895899999992, 5.003030000000024], [104.40905800000013, 5.003085000000112], [104.40951700000011, 5.002951999999937], [104.40961600000014, 5.003006000000141], [104.40992200000005, 5.002917000000082], [104.41002100000009, 5.002972], [104.41048100000012, 5.0028389999999945], [104.41057900000004, 5.002893000000029], [104.41088600000006, 5.00280400000014], [104.41098399999998, 5.002859000000058], [104.41144400000002, 5.002726000000109], [104.41154300000005, 5.002779999999916], [104.41184900000013, 5.002691000000027], [104.411948, 5.002745999999945], [104.41240699999997, 5.002612000000056], [104.41250599999995, 5.002666999999974], [104.41281200000009, 5.002578000000085], [104.41291100000007, 5.002633000000003], [104.41337099999993, 5.002499000000114], [104.41346999999996, 5.002554000000089], [104.41377600000004, 5.002464999999972], [104.41387500000008, 5.002520000000118], [104.41433400000005, 5.002386000000001], [104.41443300000009, 5.002440999999976], [104.414739, 5.00235200000003], [104.41483800000003, 5.002407000000005], [104.41529800000006, 5.002273000000059], [104.41539599999999, 5.002328000000034], [104.41570300000001, 5.002238999999918], [104.4158010000001, 5.0022930000001224], [104.41626099999996, 5.002159999999947], [104.41636, 5.002215000000092], [104.41666600000008, 5.002125999999976], [104.41676500000011, 5.00218000000001], [104.41722400000009, 5.002047000000061], [104.41732300000007, 5.002101999999979], [104.41762900000003, 5.00201300000009], [104.41772800000001, 5.002067000000068], [104.4181880000001, 5.001934000000119], [104.41828600000002, 5.001987999999926], [104.41859299999999, 5.001899999999978], [104.41869100000014, 5.001953999999955], [104.419151, 5.001821000000007], [104.41925000000003, 5.001875000000041], [104.41955600000011, 5.001786000000095], [104.41965499999998, 5.00184100000007], [104.42011400000007, 5.001708000000065], [104.4202130000001, 5.001762000000099], [104.42051900000001, 5.0016729999999825], [104.42061800000005, 5.001728000000128], [104.42107800000008, 5.001595000000123], [104.42117700000011, 5.001648999999986], [104.42148300000002, 5.00156000000004], [104.42158200000006, 5.001615000000015], [104.42204100000004, 5.001481000000126], [104.42214000000001, 5.001536000000044], [104.42244599999998, 5.001446999999928], [104.42254499999996, 5.001502000000073], [104.42300500000005, 5.001368000000014], [104.42310300000014, 5.001423000000102], [104.42340999999993, 5.001334000000043], [104.42350800000008, 5.001389000000131], [104.42396800000012, 5.0012550000000715], [104.42406699999998, 5.0013099999999895], [104.42437300000006, 5.0012210000001005], [104.4244720000001, 5.001275000000135], [104.42493100000002, 5.001142000000129], [104.42503000000005, 5.001197000000047], [104.42533599999996, 5.001107999999988], [104.425435, 5.001162000000022], [104.42589500000003, 5.001029000000017], [104.425993, 5.001084000000105], [104.42629999999997, 5.000995000000046], [104.426399, 5.00104900000008], [104.42685799999998, 5.000916000000075], [104.42695699999996, 5.000970000000109], [104.42741599999994, 5.000837000000104], [104.42751500000014, 5.000892000000022], [104.42782100000005, 5.000803000000133], [104.42792000000009, 5.000856999999996], [104.42838000000012, 5.000723999999991], [104.42847800000004, 5.00077900000008], [104.42878500000006, 5.00069000000002], [104.4288840000001, 5.000744000000054], [104.42934300000007, 5.000611000000049], [104.42944200000005, 5.000665000000083], [104.42974799999996, 5.000577000000078], [104.429847, 5.000631000000112], [104.43030599999997, 5.000498000000107], [104.43040500000001, 5.000552000000141], [104.43071199999997, 5.000463000000082], [104.43081000000012, 5.000518], [104.43126999999998, 5.000384999999994], [104.43136900000002, 5.0004390000000285], [104.4316750000001, 5.0003500000001395], [104.43177400000013, 5.0004050000000575], [104.43223300000005, 5.000272000000052], [104.43233200000009, 5.000326000000086], [104.432638, 5.000237000000027], [104.43273700000003, 5.000292000000115], [104.43319700000006, 5.000158000000056], [104.43329499999999, 5.000212999999974], [104.43360200000001, 5.000124000000085], [104.43369999999993, 5.000179000000003], [104.43416000000002, 5.000045000000114], [104.434259, 5.000100000000032], [104.43456500000013, 5.000010999999972], [104.43466399999994, 5.000066000000061], [104.43512300000009, 4.999932000000001], [104.43522200000012, 4.999986999999919], [104.43552800000003, 4.99989800000003], [104.43562700000007, 4.999952000000064], [104.4360870000001, 4.999819000000059], [104.43618500000002, 4.999874000000034], [104.43649200000004, 4.999785000000088], [104.43659100000008, 4.999839000000122], [104.43705, 4.9997059999999465], [104.43714900000003, 4.999761000000092], [104.43745499999994, 4.9996719999999755], [104.43755399999998, 4.99972600000001], [104.43801300000013, 4.999593000000004], [104.43811199999993, 4.999647000000039], [104.43841900000012, 4.999557999999979], [104.43851700000005, 4.999613000000068], [104.43897700000014, 4.999480000000119], [104.43907599999994, 4.999533999999926], [104.43938200000008, 4.999445000000037], [104.43948100000006, 4.999499999999955], [104.43994000000004, 4.9993670000000066], [104.44003900000007, 4.999420999999984], [104.44034499999998, 4.999332000000095], [104.44044400000001, 4.999387000000013], [104.44090400000005, 4.999253000000124], [104.44100199999997, 4.999308000000099], [104.44130899999999, 4.999218999999982], [104.44140700000008, 4.999274000000128], [104.44186699999995, 4.999140000000011], [104.44196599999998, 4.999194999999986], [104.44227200000006, 4.99910600000004], [104.4423710000001, 4.999161000000015], [104.44283000000007, 4.999027000000069], [104.4429290000001, 4.999082000000044], [104.44323500000002, 4.998992999999928], [104.443334, 4.999047000000132], [104.44379400000008, 4.998913999999957], [104.443892, 4.998969000000102], [104.44419900000003, 4.998879999999986], [104.444298, 4.99893400000002], [104.44475699999998, 4.998801000000071], [104.44485600000002, 4.998855000000049], [104.445315, 4.9987220000001], [104.44541399999997, 4.998777000000018], [104.44572000000011, 4.998688000000129], [104.44581899999991, 4.998741999999936], [104.44627899999995, 4.998608999999988], [104.4463770000001, 4.998663000000022], [104.44668400000006, 4.998575000000017], [104.4467830000001, 4.998629000000051], [104.44724200000007, 4.998496000000046], [104.44734100000011, 4.99855000000008], [104.44764700000002, 4.998460999999963], [104.44774600000005, 4.998516000000109], [104.44820499999997, 4.9983830000001035], [104.44830400000001, 4.998437000000138], [104.44861100000003, 4.998348000000021], [104.44870900000012, 4.998402999999996], [104.44916899999998, 4.998269000000107], [104.44926800000002, 4.998324000000025], [104.4495740000001, 4.998235000000136], [104.44967300000013, 4.998290000000054], [104.45013200000011, 4.9981559999999945], [104.45023099999992, 4.998211000000083], [104.45053700000005, 4.9981220000000235], [104.45063600000003, 4.998177000000112], [104.45109600000012, 4.998043000000052], [104.45119400000004, 4.998098000000141], [104.45150100000001, 4.998009000000081], [104.45159899999999, 4.998063000000116], [104.45205900000002, 4.99793000000011], [104.45215800000005, 4.997985000000028], [104.45246400000013, 4.997896000000139], [104.452563, 4.997950000000003], [104.45302199999992, 4.997816999999998], [104.45312100000012, 4.997871000000032], [104.45342700000003, 4.997783000000027], [104.45352600000007, 4.997837000000061], [104.45398599999993, 4.997704000000056], [104.45408400000008, 4.99775800000009], [104.45439100000004, 4.9976689999999735], [104.45449000000008, 4.997724000000119], [104.45494900000006, 4.997591000000114], [104.45504800000003, 4.997644999999977], [104.455354, 4.997556000000088], [104.45545299999998, 4.997611000000006], [104.45591200000013, 4.997477000000117], [104.45601099999999, 4.997532000000035], [104.45631799999995, 4.997442999999976], [104.4564160000001, 4.997498000000064], [104.45687600000014, 4.997364000000005], [104.456975, 4.997419000000093], [104.45728100000008, 4.997330000000034], [104.45738000000011, 4.997384000000068], [104.45783900000004, 4.9972510000000625], [104.45793800000007, 4.9973059999999805], [104.45824399999998, 4.9972170000000915], [104.45834300000001, 4.997271000000126], [104.45880300000005, 4.99713800000012], [104.45890100000003, 4.997193000000038], [104.45920799999999, 4.997103999999979], [104.45930600000014, 4.997158000000013], [104.459766, 4.997025000000008], [104.45986499999998, 4.997079000000042], [104.46017100000012, 4.996989999999926], [104.46026999999992, 4.997045000000071], [104.46072900000007, 4.996912000000066], [104.4608280000001, 4.9969660000001], [104.46113400000002, 4.99687700000004], [104.46123300000005, 4.996932000000129], [104.46169300000008, 4.996798000000069], [104.461791, 4.996852999999987], [104.46209800000003, 4.996764000000098], [104.46219599999995, 4.996819000000016], [104.46265599999998, 4.996685000000127], [104.46275500000002, 4.996740000000045], [104.46306099999993, 4.996650999999986], [104.46316000000013, 4.996706000000074], [104.46361900000011, 4.996572000000015], [104.46371799999997, 4.996627000000103], [104.464178, 4.996493000000044], [104.4642760000001, 4.996548000000132], [104.46458300000012, 4.996459000000073], [104.46468100000004, 4.996513999999991], [104.46514100000007, 4.9963800000001015], [104.46524000000011, 4.9964350000000195], [104.46554600000002, 4.9963460000001305], [104.46564500000005, 4.996399999999994], [104.46610400000003, 4.996266999999989], [104.46620300000001, 4.996322000000077], [104.46650899999997, 4.996233000000018], [104.46660799999995, 4.996287000000052], [104.46706800000004, 4.996154000000047], [104.46716600000013, 4.996208000000081], [104.46747299999993, 4.9961190000000215], [104.46757199999996, 4.99617400000011], [104.46803100000011, 4.996041000000105], [104.46812999999997, 4.996095000000139], [104.46843600000005, 4.996006000000079], [104.46853500000009, 4.996060999999997], [104.46899400000001, 4.995927000000108], [104.46909300000004, 4.995982000000026], [104.46940000000006, 4.995893000000137], [104.46949799999999, 4.995948000000055], [104.46995800000002, 4.995813999999996], [104.47005700000005, 4.995869000000084], [104.47036299999996, 4.995780000000025], [104.470462, 4.995834000000059], [104.470846, 4.995723000000112], [104.664763, 4.642563999999936], [104.54274900000007, 4.575139000000036], [104.52483399999994, 4.6077770000000555], [104.5246810000001, 4.607821000000001], [104.46777100000008, 4.71147000000002], [104.31073500000002, 4.624635000000126], [104.27126200000004, 4.696478000000013], [104.27130599999992, 4.6966319999999655], [104.21669300000013, 4.795995000000005], [103.93960600000003, 4.642623000000015], [103.78080699999992, 4.931140000000141], [104.07197000000014, 5.092352000000005]]], + "type": "polygon" + } + ], + "type": "geometrycollection" +} \ No newline at end of file diff --git a/indexer-core/src/test/resources/geo/decimator/geometrycollection_small_multilinestring.json b/indexer-core/src/test/resources/geo/decimator/geometrycollection_small_multilinestring.json new file mode 100644 index 0000000000000000000000000000000000000000..b63be72db97e043976de3b26c31425d4608492ea --- /dev/null +++ b/indexer-core/src/test/resources/geo/decimator/geometrycollection_small_multilinestring.json @@ -0,0 +1,8 @@ +{ + "geometries": [{ + "coordinates": [[[103.87024099999996, 6.064692000000036], [103.87024000000008, 6.064800000000105]], [[103.87024000000008, 6.064918000000091], [103.86939899999993, 6.274297000000104], [103.86928400000005, 6.306404999999984]]], + "type": "multilinestring" + } + ], + "type": "geometrycollection" +} \ No newline at end of file diff --git a/indexer-core/src/test/resources/geo/decimator/point_2d.json b/indexer-core/src/test/resources/geo/decimator/point_2d.json new file mode 100644 index 0000000000000000000000000000000000000000..d87f5537f735f49e14981505ba29915e48e827e7 --- /dev/null +++ b/indexer-core/src/test/resources/geo/decimator/point_2d.json @@ -0,0 +1,4 @@ +{ + "coordinates": [104.095752, 6.3154210000001285], + "type": "point" +} diff --git a/indexer-core/src/test/resources/geo/decimator/point_3d.json b/indexer-core/src/test/resources/geo/decimator/point_3d.json new file mode 100644 index 0000000000000000000000000000000000000000..05864906b11eae2f9e04cac395c96ff895103812 --- /dev/null +++ b/indexer-core/src/test/resources/geo/decimator/point_3d.json @@ -0,0 +1,4 @@ +{ + "coordinates": [104.095752, 6.3154210000001285, 100.0], + "type": "point" +} diff --git a/pom.xml b/pom.xml index f538a540cb69aabbd4ea7e0057f53b8b999045fe..b3abf3636de183bdf632b8cda2c02e6dc576fdf8 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ <hibernate-validator.version>6.1.5.Final</hibernate-validator.version> <jackson-databind.version>2.13.2.2</jackson-databind.version> <jackson.version>2.13.2</jackson.version> - <tomcat-embed-core.version>9.0.45</tomcat-embed-core.version> + <tomcat-embed-core.version>9.0.67</tomcat-embed-core.version> <common-codec.version>1.14</common-codec.version> <elasticsearch.version>7.8.1</elasticsearch.version> <netty.version>4.1.51.Final</netty.version> diff --git a/provider/indexer-aws/src/main/resources/application.properties b/provider/indexer-aws/src/main/resources/application.properties index c1fb5c941d31d5a857188a4ed9ee60136713d5d5..0fd4d55c6aeadaf51f3088bbb7608a640431a8bc 100644 --- a/provider/indexer-aws/src/main/resources/application.properties +++ b/provider/indexer-aws/src/main/resources/application.properties @@ -5,6 +5,8 @@ AUTHORIZE_API=${ENTITLEMENTS_BASE_URL}/api/entitlements/v2 logging.level.org.springframework.web=${LOG_LEVEL} server.port=${APPLICATION_PORT} +aws.environment=${ENVIRONMENT} + aws.threads=50 DEFAULT_DATA_COUNTRY=US CRON_INDEX_CLEANUP_THRESHOLD_DAYS=3 @@ -25,6 +27,9 @@ GAE_SERVICE=indexer #reusing STORAGE_BASE_URL variable here as the base url to point to schema service SCHEMA_HOST=${SCHEMA_BASE_URL}/api/schema-service/v1/schema +PARTITION_PATH=/api/partition/v1 +PARTITION_API=${PARTITION_BASE_URL}${PARTITION_PATH} + STORAGE_SCHEMA_HOST=${STORAGE_BASE_URL}/api/storage/v2/schemas STORAGE_QUERY_RECORD_HOST=${STORAGE_BASE_URL}/api/storage/v2/query/records STORAGE_QUERY_KINDS_HOST=${STORAGE_BASE_URL}/api/storage/v2/query/kinds diff --git a/provider/indexer-azure/pom.xml b/provider/indexer-azure/pom.xml index 8e4665c548fbc3b488f69cca5ca33f68dc3ab713..82cfaeed59b5d6f00f43368920b3b233802855e7 100644 --- a/provider/indexer-azure/pom.xml +++ b/provider/indexer-azure/pom.xml @@ -55,6 +55,9 @@ <jackson-databind.version>2.13.2.2</jackson-databind.version> <jackson.version>2.13.2</jackson.version> <spring-webmvc.version>5.3.22</spring-webmvc.version> + <azure-core.version>1.31.0</azure-core.version> + <azure-security-keyvault-keys.version>4.4.6</azure-security-keyvault-keys.version> + <azure-security-keyvault-secrets.version>4.4.6</azure-security-keyvault-secrets.version> </properties> <dependencyManagement> @@ -174,6 +177,18 @@ <groupId>org.opengroup.osdu</groupId> <artifactId>os-core-common</artifactId> </exclusion> + <exclusion> + <artifactId>azure-security-keyvault-keys</artifactId> + <groupId>com.azure</groupId> + </exclusion> + <exclusion> + <artifactId>azure-security-keyvault-secrets</artifactId> + <groupId>com.azure</groupId> + </exclusion> + <exclusion> + <artifactId>azure-core</artifactId> + <groupId>com.azure</groupId> + </exclusion> </exclusions> </dependency> @@ -336,6 +351,21 @@ <artifactId>spring-webmvc</artifactId> <version>${spring-webmvc.version}</version> </dependency> + <dependency> + <groupId>com.azure</groupId> + <artifactId>azure-core</artifactId> + <version>${azure-core.version}</version> + </dependency> + <dependency> + <groupId>com.azure</groupId> + <artifactId>azure-security-keyvault-keys</artifactId> + <version>${azure-security-keyvault-keys.version}</version> + </dependency> + <dependency> + <groupId>com.azure</groupId> + <artifactId>azure-security-keyvault-secrets</artifactId> + <version>${azure-security-keyvault-secrets.version}</version> + </dependency> </dependencies> diff --git a/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/config/AzureBootstrapConfig.java b/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/config/AzureBootstrapConfig.java index 50184634c1f45e4990658b1a8ad0499e43f1ef6e..17b8d526b78fba8ce7819d73bce2302515ebaaf6 100644 --- a/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/config/AzureBootstrapConfig.java +++ b/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/config/AzureBootstrapConfig.java @@ -39,6 +39,9 @@ public class AzureBootstrapConfig { @Value("${azure.servicebus.reindex.topic-name}") private String serviceBusReindexTopicName; + @Value("${publish.indexing.progress}") + private boolean publishIndexingProgress; + @Value("${ELASTIC_CACHE_EXPIRATION}") private Integer elasticCacheExpiration; @@ -63,6 +66,12 @@ public class AzureBootstrapConfig { return serviceBusReindexTopicName; } + @Bean + @Named("PUBLISH_TO_INDEXING_PROGRESS_TOPIC") + public Boolean publishIndexingProgress() { + return publishIndexingProgress; + } + @Bean @Named("ELASTIC_CACHE_EXPIRATION") public Integer getElasticCacheExpiration() { diff --git a/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/publish/PublisherImpl.java b/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/publish/PublisherImpl.java index dfa173eb1eb44d3f29530b1a733307800e83626f..4d29f6d3c96bc08c68352c0e636890e289819181 100644 --- a/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/publish/PublisherImpl.java +++ b/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/publish/PublisherImpl.java @@ -56,6 +56,9 @@ public class PublisherImpl implements IPublisher { @Named("SERVICE_BUS_TOPIC") private String serviceBusTopic; + @Inject + @Named("PUBLISH_TO_INDEXING_PROGRESS_TOPIC") + private boolean publishToIndexingProgressTopic; @Override public void publishStatusChangedTagsToTopic(DpsHeaders headers, JobStatus indexerBatchStatus) throws Exception { @@ -73,8 +76,10 @@ public class PublisherImpl implements IPublisher { message.setContentType("application/json"); try { - logger.debug("Indexer publishes message " + headers.getCorrelationId()); - topicClientFactory.getClient(headers.getPartitionId(), serviceBusTopic).send(message); + if(publishToIndexingProgressTopic) { + logger.debug("Indexer publishes message " + headers.getCorrelationId()); + topicClientFactory.getClient(headers.getPartitionId(), serviceBusTopic).send(message); + } } catch (Exception e) { diff --git a/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/service/RetryPolicy.java b/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/service/RetryPolicy.java index c3876e4a32cdb75df2890496275f151f60e1ee24..2d7bfae5c0e324a18f97685d9ad29004f3ca3be7 100644 --- a/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/service/RetryPolicy.java +++ b/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/service/RetryPolicy.java @@ -85,13 +85,11 @@ public class RetryPolicy { public boolean schemaRetryPolicy(HttpResponse response) { if (retryOnEmptyResponse(response)) return false; - if (defaultResponseRetry(response)) return true; - - if (response.getResponseCode() == 404) { + if (defaultResponseRetry(response)) { log.info("Schema API retry"); return true; } - + return false; } diff --git a/provider/indexer-azure/src/main/resources/application.properties b/provider/indexer-azure/src/main/resources/application.properties index 0387df2212bf728605fc677e3c05d7f5573edd19..ba855b47b9e34e9720a1be7d51b26ef02d44abe8 100644 --- a/provider/indexer-azure/src/main/resources/application.properties +++ b/provider/indexer-azure/src/main/resources/application.properties @@ -68,6 +68,7 @@ azure.cosmosdb.database=${cosmosdb_database} #AzureServiceBusconfiguration azure.servicebus.topic-name=${servicebus_topic_name} azure.servicebus.reindex.topic-name=${reindex_topic_name} +publish.indexing.progress=false #Indexer-Queue-header indexer.queue.key=abcd diff --git a/provider/indexer-azure/src/test/java/org/opengroup/osdu/indexer/azure/service/PublisherImplTest.java b/provider/indexer-azure/src/test/java/org/opengroup/osdu/indexer/azure/service/PublisherImplTest.java new file mode 100644 index 0000000000000000000000000000000000000000..cd3f7333d33ef68caeb1b70c65eece302d917095 --- /dev/null +++ b/provider/indexer-azure/src/test/java/org/opengroup/osdu/indexer/azure/service/PublisherImplTest.java @@ -0,0 +1,47 @@ +package org.opengroup.osdu.indexer.azure.service; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.opengroup.osdu.core.common.logging.JaxRsDpsLog; +import org.opengroup.osdu.core.common.model.http.DpsHeaders; +import org.opengroup.osdu.core.common.model.indexer.JobStatus; +import org.opengroup.osdu.indexer.azure.publish.PublisherImpl; +import org.powermock.modules.junit4.PowerMockRunner; + +import javax.inject.Inject; +import javax.inject.Named; +import java.util.HashMap; +import java.util.Map; + +import static org.mockito.Mockito.never; +import static org.mockito.Mockito.verify; + + +@RunWith(PowerMockRunner.class) +public class PublisherImplTest { + @InjectMocks + private PublisherImpl publisher = new PublisherImpl(); + @Mock + private JaxRsDpsLog logger; + private DpsHeaders dpsHeaders; + private JobStatus jobStatus; + + @Test + public void indexer_should_not_publish_message_to_stale_service_bus_topic() throws Exception { + // Arrange + this.dpsHeaders = new DpsHeaders(); + this.jobStatus = new JobStatus(); + Map<String, String> messageAttributes = new HashMap<>(); + messageAttributes.put(DpsHeaders.ACCOUNT_ID, dpsHeaders.getPartitionIdWithFallbackToAccountId()); + messageAttributes.put(DpsHeaders.DATA_PARTITION_ID, dpsHeaders.getPartitionIdWithFallbackToAccountId()); + messageAttributes.put(DpsHeaders.CORRELATION_ID, dpsHeaders.getCorrelationId()); + + // Act + publisher.publishStatusChangedTagsToTopic(dpsHeaders, jobStatus); + + // Assert + verify(this.logger,never()).debug("Indexer publishes message " + dpsHeaders.getCorrelationId()); + } +} diff --git a/provider/indexer-gcp/src/main/java/org/opengroup/osdu/indexer/util/ServiceAccountJwtGcpClientImpl.java b/provider/indexer-gcp/src/main/java/org/opengroup/osdu/indexer/util/ServiceAccountJwtGcpClientImpl.java new file mode 100644 index 0000000000000000000000000000000000000000..0e3821c64259a8e8c8b894c646862c1ec7806b27 --- /dev/null +++ b/provider/indexer-gcp/src/main/java/org/opengroup/osdu/indexer/util/ServiceAccountJwtGcpClientImpl.java @@ -0,0 +1,38 @@ +/* + * Copyright 2020-2022 Google LLC + * Copyright 2020-2022 EPAM Systems, Inc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.opengroup.osdu.indexer.util; + +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.opengroup.osdu.core.auth.TokenProvider; +import org.opengroup.osdu.core.common.util.IServiceAccountJwtClient; +import org.springframework.stereotype.Component; + +@Slf4j +@Component +@RequiredArgsConstructor +public class ServiceAccountJwtGcpClientImpl implements IServiceAccountJwtClient { + + private final TokenProvider tokenProvider; + + @Override + public String getIdToken(String tenantName) { + log.debug("Tenant name received for auth token is: {}", tenantName); + return "Bearer " + tokenProvider.getIdToken(); + } +} diff --git a/provider/indexer-ibm/pom.xml b/provider/indexer-ibm/pom.xml index 1e739640fac94d4eda3d97a1d6c3ab8dde9d55ce..edb6132ee5f712855426b945c3129cb409aee428 100644 --- a/provider/indexer-ibm/pom.xml +++ b/provider/indexer-ibm/pom.xml @@ -31,7 +31,7 @@ <packaging>jar</packaging> <properties> - <tomcat.embed.core.version>9.0.54</tomcat.embed.core.version> + <tomcat.embed.core.version>9.0.67</tomcat.embed.core.version> <os-core-lib-ibm.version>0.16.0-rc1</os-core-lib-ibm.version> <spring-webmvc.version>5.3.22</spring-webmvc.version> <jackson-databind.version>2.13.2.2</jackson-databind.version> diff --git a/testing/indexer-test-aws/pom.xml b/testing/indexer-test-aws/pom.xml index 11381848bb270b5cedc852aff22ffcc3c8fa595d..ac44e96ee93b4fea1677bc2e35a7e8f9acc4f938 100644 --- a/testing/indexer-test-aws/pom.xml +++ b/testing/indexer-test-aws/pom.xml @@ -94,7 +94,7 @@ <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> - <version>2.8.5</version> + <version>2.9.1</version> <scope>compile</scope> </dependency> <dependency> diff --git a/testing/indexer-test-azure/pom.xml b/testing/indexer-test-azure/pom.xml index b52963234630b2500fca051f894d804d646be6f9..d2c695eb174b725dd96288ae256399588b08bd2d 100644 --- a/testing/indexer-test-azure/pom.xml +++ b/testing/indexer-test-azure/pom.xml @@ -136,7 +136,7 @@ <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> - <version>2.8.5</version> + <version>2.9.1</version> <scope>compile</scope> </dependency> <dependency> diff --git a/testing/indexer-test-core/pom.xml b/testing/indexer-test-core/pom.xml index eb189487a5b4be337e717e867c32321022eed38f..20f8cf62b36732ca93d9d17b775d68d9678f7af0 100644 --- a/testing/indexer-test-core/pom.xml +++ b/testing/indexer-test-core/pom.xml @@ -62,7 +62,7 @@ <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> - <version>2.8.5</version> + <version>2.9.1</version> <scope>compile</scope> </dependency> <dependency> diff --git a/testing/indexer-test-core/src/main/resources/features/indexrecord/indexRecord-schema-service.feature b/testing/indexer-test-core/src/main/resources/features/indexrecord/indexRecord-schema-service.feature index 8fa177c47e73e3d05d4320614fe4baefa7b32146..d11cd33d5bf4076f0881a0966f8e25d573394644 100644 --- a/testing/indexer-test-core/src/main/resources/features/indexrecord/indexRecord-schema-service.feature +++ b/testing/indexer-test-core/src/main/resources/features/indexrecord/indexRecord-schema-service.feature @@ -13,6 +13,7 @@ Feature: Indexing of the documents | tenant1:indexer:test-update-data--Integration:1.0.1 | tenant1-indexer-test-update-data--integration-1.0.1 | index_update_records_kind_v1 | | tenant1:indexer:test-update-data--Integration:2.0.1 | tenant1-indexer-test-update-data--integration-2.0.1 | index_update_records_kind_v2 | | tenant1:indexer:virtual-properties-Integration:1.0.0 | tenant1-indexer-virtual-properties-integration-1.0.0 | index_record_virtual_properties | + | tenant1:indexer:decimation-Integration:1.0.0 | tenant1-indexer-decimation-integration-1.0.0 | index_record_seismic_survey | Scenario Outline: Ingest the record and Index in the Elastic Search When I ingest records with the <recordFile> with <acl> for a given <kind> @@ -57,6 +58,7 @@ Feature: Indexing of the documents Examples: | kind | recordFile | number | index | acl | field | top_left_latitude | top_left_longitude | bottom_right_latitude | bottom_right_longitude | | "tenant1:indexer:virtual-properties-Integration:1.0.0" | "index_record_virtual_properties" | 3 | "tenant1-indexer-virtual-properties-integration-1.0.0" | "data.default.viewers@tenant1" | "data.VirtualProperties.DefaultLocation.Wgs84Coordinates" | 90 | -180 | -90 | 180 | + | "tenant1:indexer:decimation-Integration:1.0.0" | "index_record_seismic_survey" | 1 | "tenant1-indexer-decimation-integration-1.0.0" | "data.default.viewers@tenant1" | "data.VirtualProperties.DefaultLocation.Wgs84Coordinates" | 90 | -180 | -90 | 180 | Scenario Outline: Ingest the r3-record with arrays of objects and hints in schema and Index in the Elastic Search When I ingest records with the <recordFile> with <acl> for a given <kind> diff --git a/testing/indexer-test-core/src/main/resources/testData/index_record_seismic_survey.json b/testing/indexer-test-core/src/main/resources/testData/index_record_seismic_survey.json new file mode 100644 index 0000000000000000000000000000000000000000..1ea593090c11e3c1648a2ab8584c084bd18476ac --- /dev/null +++ b/testing/indexer-test-core/src/main/resources/testData/index_record_seismic_survey.json @@ -0,0 +1,46240 @@ +[{ + "id": "tenant1:<kindSubType>:testIngest1<timestamp>", + "data": { + "ProjectName": "NT94", + "SeismicGeometryTypeID": "opendes:reference-data--SeismicGeometryType:2D:", + "SpatialLocation": { + "AsIngestedCoordinates": { + "features": [{ + "geometry": { + "coordinates": [ + [ + [ + 2058657, + 5960612 + ], + [ + 2058667, + 5960608 + ], + [ + 2058679, + 5960603 + ], + [ + 2058691, + 5960599 + ], + [ + 2058703, + 5960593 + ], + [ + 2058714, + 5960589 + ], + [ + 2058726, + 5960584 + ], + [ + 2058738, + 5960580 + ], + [ + 2058748, + 5960574 + ], + [ + 2058760, + 5960570 + ], + [ + 2058772, + 5960565 + ], + [ + 2058783, + 5960560 + ], + [ + 2058795, + 5960555 + ], + [ + 2058807, + 5960551 + ], + [ + 2058817, + 5960546 + ], + [ + 2058829, + 5960541 + ], + [ + 2058841, + 5960536 + ], + [ + 2058852, + 5960532 + ], + [ + 2058864, + 5960526 + ], + [ + 2058876, + 5960522 + ], + [ + 2058886, + 5960516 + ], + [ + 2058898, + 5960512 + ], + [ + 2058909, + 5960506 + ], + [ + 2058921, + 5960502 + ], + [ + 2058932, + 5960496 + ], + [ + 2058944, + 5960492 + ], + [ + 2058955, + 5960486 + ], + [ + 2058966, + 5960481 + ], + [ + 2058978, + 5960476 + ], + [ + 2058989, + 5960471 + ], + [ + 2059001, + 5960465 + ], + [ + 2059011, + 5960460 + ], + [ + 2059023, + 5960455 + ], + [ + 2059034, + 5960450 + ], + [ + 2059045, + 5960444 + ], + [ + 2059057, + 5960439 + ], + [ + 2059068, + 5960433 + ], + [ + 2059079, + 5960428 + ], + [ + 2059090, + 5960422 + ], + [ + 2059101, + 5960417 + ], + [ + 2059113, + 5960412 + ], + [ + 2059124, + 5960405 + ], + [ + 2059134, + 5960400 + ], + [ + 2059146, + 5960394 + ], + [ + 2059157, + 5960389 + ], + [ + 2059168, + 5960383 + ], + [ + 2059180, + 5960378 + ], + [ + 2059190, + 5960372 + ], + [ + 2059201, + 5960366 + ], + [ + 2059213, + 5960360 + ], + [ + 2059224, + 5960355 + ], + [ + 2059235, + 5960349 + ], + [ + 2059246, + 5960344 + ], + [ + 2059257, + 5960338 + ], + [ + 2059268, + 5960332 + ], + [ + 2059280, + 5960326 + ], + [ + 2059291, + 5960321 + ], + [ + 2059301, + 5960315 + ], + [ + 2059313, + 5960310 + ], + [ + 2059324, + 5960303 + ], + [ + 2059335, + 5960298 + ], + [ + 2059346, + 5960292 + ], + [ + 2059357, + 5960287 + ], + [ + 2059368, + 5960281 + ], + [ + 2059379, + 5960275 + ], + [ + 2059391, + 5960270 + ], + [ + 2059402, + 5960263 + ], + [ + 2059412, + 5960258 + ], + [ + 2059423, + 5960252 + ], + [ + 2059434, + 5960246 + ], + [ + 2059446, + 5960240 + ], + [ + 2059457, + 5960234 + ], + [ + 2059467, + 5960228 + ], + [ + 2059478, + 5960222 + ], + [ + 2059489, + 5960216 + ], + [ + 2059501, + 5960210 + ], + [ + 2059512, + 5960204 + ], + [ + 2059522, + 5960198 + ], + [ + 2059533, + 5960192 + ], + [ + 2059544, + 5960186 + ], + [ + 2059555, + 5960179 + ], + [ + 2059566, + 5960174 + ], + [ + 2059577, + 5960167 + ], + [ + 2059588, + 5960162 + ], + [ + 2059599, + 5960156 + ], + [ + 2059610, + 5960149 + ], + [ + 2059620, + 5960144 + ], + [ + 2059631, + 5960137 + ], + [ + 2059642, + 5960131 + ], + [ + 2059653, + 5960125 + ], + [ + 2059664, + 5960119 + ], + [ + 2059674, + 5960112 + ], + [ + 2059685, + 5960106 + ], + [ + 2059696, + 5960099 + ], + [ + 2059707, + 5960094 + ], + [ + 2059717, + 5960087 + ], + [ + 2059728, + 5960081 + ], + [ + 2059739, + 5960074 + ], + [ + 2059750, + 5960068 + ], + [ + 2059760, + 5960062 + ], + [ + 2059771, + 5960055 + ], + [ + 2059782, + 5960049 + ], + [ + 2059793, + 5960042 + ], + [ + 2059804, + 5960036 + ], + [ + 2059813, + 5960028 + ], + [ + 2059824, + 5960022 + ], + [ + 2059835, + 5960015 + ], + [ + 2059846, + 5960009 + ], + [ + 2059855, + 5960001 + ], + [ + 2059866, + 5959995 + ], + [ + 2059877, + 5959988 + ], + [ + 2059888, + 5959981 + ], + [ + 2059897, + 5959975 + ], + [ + 2059908, + 5959967 + ], + [ + 2059919, + 5959961 + ], + [ + 2059929, + 5959953 + ], + [ + 2059939, + 5959947 + ], + [ + 2059950, + 5959939 + ], + [ + 2059960, + 5959933 + ], + [ + 2059971, + 5959925 + ], + [ + 2059980, + 5959919 + ], + [ + 2059991, + 5959911 + ], + [ + 2060002, + 5959905 + ], + [ + 2060012, + 5959898 + ], + [ + 2060022, + 5959891 + ], + [ + 2060033, + 5959884 + ], + [ + 2060043, + 5959877 + ], + [ + 2060054, + 5959870 + ], + [ + 2060064, + 5959863 + ], + [ + 2060074, + 5959856 + ], + [ + 2060085, + 5959848 + ], + [ + 2060095, + 5959842 + ], + [ + 2060105, + 5959835 + ], + [ + 2060115, + 5959827 + ], + [ + 2060126, + 5959821 + ], + [ + 2060135, + 5959813 + ], + [ + 2060146, + 5959806 + ], + [ + 2060156, + 5959798 + ], + [ + 2060167, + 5959791 + ], + [ + 2060176, + 5959784 + ], + [ + 2060186, + 5959777 + ], + [ + 2060197, + 5959769 + ], + [ + 2060207, + 5959762 + ], + [ + 2060217, + 5959755 + ], + [ + 2060227, + 5959747 + ], + [ + 2060238, + 5959740 + ], + [ + 2060247, + 5959732 + ], + [ + 2060257, + 5959726 + ], + [ + 2060268, + 5959718 + ], + [ + 2060278, + 5959711 + ], + [ + 2060288, + 5959703 + ], + [ + 2060298, + 5959696 + ], + [ + 2060308, + 5959689 + ], + [ + 2060319, + 5959681 + ], + [ + 2060328, + 5959674 + ], + [ + 2060338, + 5959666 + ], + [ + 2060349, + 5959659 + ], + [ + 2060359, + 5959651 + ], + [ + 2060368, + 5959644 + ], + [ + 2060378, + 5959637 + ], + [ + 2060389, + 5959628 + ], + [ + 2060398, + 5959621 + ], + [ + 2060408, + 5959613 + ], + [ + 2060418, + 5959606 + ], + [ + 2060428, + 5959597 + ], + [ + 2060437, + 5959590 + ], + [ + 2060448, + 5959582 + ], + [ + 2060458, + 5959574 + ], + [ + 2060467, + 5959567 + ], + [ + 2060477, + 5959559 + ], + [ + 2060487, + 5959551 + ], + [ + 2060496, + 5959543 + ], + [ + 2060506, + 5959535 + ], + [ + 2060516, + 5959527 + ], + [ + 2060526, + 5959519 + ], + [ + 2060535, + 5959512 + ], + [ + 2060545, + 5959503 + ], + [ + 2060555, + 5959496 + ], + [ + 2060564, + 5959487 + ], + [ + 2060574, + 5959480 + ], + [ + 2060584, + 5959471 + ], + [ + 2060594, + 5959464 + ], + [ + 2060603, + 5959456 + ], + [ + 2060613, + 5959448 + ], + [ + 2060623, + 5959440 + ], + [ + 2060632, + 5959432 + ], + [ + 2060641, + 5959424 + ], + [ + 2060651, + 5959417 + ], + [ + 2060660, + 5959408 + ], + [ + 2060670, + 5959401 + ], + [ + 2060680, + 5959392 + ], + [ + 2060690, + 5959384 + ], + [ + 2060699, + 5959376 + ], + [ + 2060709, + 5959368 + ], + [ + 2060719, + 5959361 + ], + [ + 2060728, + 5959352 + ], + [ + 2060738, + 5959344 + ], + [ + 2060748, + 5959335 + ], + [ + 2060756, + 5959328 + ], + [ + 2060766, + 5959319 + ], + [ + 2060776, + 5959311 + ], + [ + 2060786, + 5959304 + ], + [ + 2060795, + 5959295 + ], + [ + 2060805, + 5959287 + ], + [ + 2060814, + 5959279 + ], + [ + 2060823, + 5959271 + ], + [ + 2060833, + 5959262 + ], + [ + 2060843, + 5959255 + ], + [ + 2060852, + 5959247 + ], + [ + 2060862, + 5959239 + ], + [ + 2060872, + 5959231 + ], + [ + 2060881, + 5959222 + ], + [ + 2060891, + 5959215 + ], + [ + 2060901, + 5959206 + ], + [ + 2060911, + 5959198 + ], + [ + 2060920, + 5959191 + ], + [ + 2060929, + 5959182 + ], + [ + 2060939, + 5959175 + ], + [ + 2060948, + 5959166 + ], + [ + 2060958, + 5959158 + ], + [ + 2060968, + 5959151 + ], + [ + 2060977, + 5959142 + ], + [ + 2060987, + 5959134 + ], + [ + 2060997, + 5959126 + ], + [ + 2061007, + 5959118 + ], + [ + 2061016, + 5959110 + ], + [ + 2061025, + 5959102 + ], + [ + 2061035, + 5959094 + ], + [ + 2061044, + 5959086 + ], + [ + 2061054, + 5959078 + ], + [ + 2061064, + 5959069 + ], + [ + 2061073, + 5959062 + ], + [ + 2061083, + 5959053 + ], + [ + 2061093, + 5959045 + ], + [ + 2061103, + 5959038 + ], + [ + 2061112, + 5959029 + ], + [ + 2061122, + 5959022 + ], + [ + 2061131, + 5959013 + ], + [ + 2061140, + 5959005 + ], + [ + 2061150, + 5958997 + ], + [ + 2061160, + 5958989 + ], + [ + 2061169, + 5958981 + ], + [ + 2061179, + 5958973 + ], + [ + 2061189, + 5958965 + ], + [ + 2061199, + 5958956 + ], + [ + 2061208, + 5958949 + ], + [ + 2061217, + 5958940 + ], + [ + 2061227, + 5958933 + ], + [ + 2061236, + 5958925 + ], + [ + 2061246, + 5958916 + ], + [ + 2061256, + 5958909 + ], + [ + 2061265, + 5958900 + ], + [ + 2061275, + 5958893 + ], + [ + 2061285, + 5958884 + ], + [ + 2061295, + 5958877 + ], + [ + 2061304, + 5958869 + ], + [ + 2061314, + 5958861 + ], + [ + 2061325, + 5958853 + ], + [ + 2061333, + 5958845 + ], + [ + 2061344, + 5958838 + ], + [ + 2061354, + 5958829 + ], + [ + 2061364, + 5958822 + ], + [ + 2061373, + 5958814 + ], + [ + 2061383, + 5958806 + ], + [ + 2061393, + 5958799 + ], + [ + 2061402, + 5958790 + ], + [ + 2061413, + 5958783 + ], + [ + 2061423, + 5958775 + ], + [ + 2061433, + 5958768 + ], + [ + 2061442, + 5958760 + ], + [ + 2061452, + 5958752 + ], + [ + 2061463, + 5958745 + ], + [ + 2061472, + 5958737 + ], + [ + 2061482, + 5958729 + ], + [ + 2061492, + 5958721 + ], + [ + 2061503, + 5958714 + ], + [ + 2061512, + 5958706 + ], + [ + 2061522, + 5958698 + ], + [ + 2061532, + 5958691 + ], + [ + 2061541, + 5958683 + ], + [ + 2061552, + 5958676 + ], + [ + 2061562, + 5958667 + ], + [ + 2061572, + 5958660 + ], + [ + 2061581, + 5958652 + ], + [ + 2061592, + 5958645 + ], + [ + 2061602, + 5958638 + ], + [ + 2061611, + 5958630 + ], + [ + 2061622, + 5958623 + ], + [ + 2061632, + 5958617 + ], + [ + 2061642, + 5958609 + ], + [ + 2061652, + 5958601 + ], + [ + 2061662, + 5958596 + ], + [ + 2061672, + 5958588 + ], + [ + 2061683, + 5958581 + ], + [ + 2061692, + 5958575 + ], + [ + 2061703, + 5958567 + ], + [ + 2061713, + 5958560 + ], + [ + 2061724, + 5958553 + ], + [ + 2061734, + 5958546 + ], + [ + 2061744, + 5958538 + ], + [ + 2061755, + 5958532 + ], + [ + 2061766, + 5958524 + ], + [ + 2061775, + 5958517 + ], + [ + 2061787, + 5958510 + ], + [ + 2061797, + 5958502 + ], + [ + 2061807, + 5958495 + ], + [ + 2061819, + 5958488 + ], + [ + 2061829, + 5958480 + ], + [ + 2061839, + 5958472 + ], + [ + 2061851, + 5958466 + ], + [ + 2061861, + 5958458 + ], + [ + 2061871, + 5958451 + ], + [ + 2061883, + 5958444 + ], + [ + 2061893, + 5958437 + ], + [ + 2061903, + 5958428 + ], + [ + 2061915, + 5958423 + ], + [ + 2061925, + 5958415 + ], + [ + 2061935, + 5958408 + ], + [ + 2061947, + 5958401 + ], + [ + 2061957, + 5958394 + ], + [ + 2061968, + 5958387 + ], + [ + 2061978, + 5958381 + ], + [ + 2061988, + 5958374 + ], + [ + 2061999, + 5958365 + ], + [ + 2062009, + 5958361 + ], + [ + 2062019, + 5958353 + ], + [ + 2062029, + 5958346 + ], + [ + 2062038, + 5958341 + ], + [ + 2062049, + 5958334 + ], + [ + 2062058, + 5958327 + ], + [ + 2062069, + 5958321 + ], + [ + 2062079, + 5958314 + ], + [ + 2062090, + 5958306 + ], + [ + 2062099, + 5958301 + ], + [ + 2062109, + 5958293 + ], + [ + 2062120, + 5958286 + ], + [ + 2062131, + 5958280 + ], + [ + 2062140, + 5958273 + ], + [ + 2062150, + 5958266 + ], + [ + 2062161, + 5958260 + ], + [ + 2062171, + 5958253 + ], + [ + 2062181, + 5958245 + ], + [ + 2062191, + 5958240 + ], + [ + 2062202, + 5958232 + ], + [ + 2062212, + 5958225 + ], + [ + 2062221, + 5958218 + ], + [ + 2062232, + 5958211 + ], + [ + 2062242, + 5958204 + ], + [ + 2062253, + 5958197 + ], + [ + 2062262, + 5958190 + ], + [ + 2062272, + 5958182 + ], + [ + 2062281, + 5958175 + ], + [ + 2062292, + 5958167 + ], + [ + 2062301, + 5958160 + ], + [ + 2062309, + 5958154 + ], + [ + 2062320, + 5958147 + ], + [ + 2062330, + 5958140 + ], + [ + 2062339, + 5958132 + ], + [ + 2062349, + 5958125 + ], + [ + 2062360, + 5958117 + ], + [ + 2062369, + 5958112 + ], + [ + 2062380, + 5958105 + ], + [ + 2062390, + 5958098 + ], + [ + 2062401, + 5958093 + ], + [ + 2062411, + 5958085 + ], + [ + 2062421, + 5958078 + ], + [ + 2062431, + 5958072 + ], + [ + 2062441, + 5958065 + ], + [ + 2062452, + 5958057 + ], + [ + 2062461, + 5958052 + ], + [ + 2062471, + 5958045 + ], + [ + 2062482, + 5958036 + ], + [ + 2062492, + 5958031 + ], + [ + 2062501, + 5958023 + ], + [ + 2062512, + 5958016 + ], + [ + 2062523, + 5958010 + ], + [ + 2062533, + 5958003 + ], + [ + 2062542, + 5957995 + ], + [ + 2062553, + 5957990 + ], + [ + 2062563, + 5957983 + ], + [ + 2062574, + 5957975 + ], + [ + 2062583, + 5957970 + ], + [ + 2062594, + 5957962 + ], + [ + 2062604, + 5957955 + ], + [ + 2062615, + 5957950 + ], + [ + 2062624, + 5957942 + ], + [ + 2062634, + 5957935 + ], + [ + 2062644, + 5957930 + ], + [ + 2062655, + 5957923 + ], + [ + 2062664, + 5957915 + ], + [ + 2062673, + 5957909 + ], + [ + 2062684, + 5957901 + ], + [ + 2062694, + 5957894 + ], + [ + 2062704, + 5957887 + ], + [ + 2062715, + 5957880 + ], + [ + 2062725, + 5957872 + ], + [ + 2062736, + 5957867 + ], + [ + 2062745, + 5957859 + ], + [ + 2062756, + 5957851 + ], + [ + 2062766, + 5957846 + ], + [ + 2062777, + 5957838 + ], + [ + 2062786, + 5957830 + ], + [ + 2062797, + 5957824 + ], + [ + 2062807, + 5957817 + ], + [ + 2062817, + 5957809 + ], + [ + 2062828, + 5957803 + ], + [ + 2062838, + 5957796 + ], + [ + 2062848, + 5957788 + ], + [ + 2062858, + 5957783 + ], + [ + 2062868, + 5957775 + ], + [ + 2062879, + 5957768 + ], + [ + 2062890, + 5957761 + ], + [ + 2062900, + 5957754 + ], + [ + 2062910, + 5957746 + ], + [ + 2062922, + 5957741 + ], + [ + 2062932, + 5957733 + ], + [ + 2062942, + 5957726 + ], + [ + 2062954, + 5957720 + ], + [ + 2062964, + 5957713 + ], + [ + 2062974, + 5957706 + ], + [ + 2062986, + 5957700 + ], + [ + 2062995, + 5957693 + ], + [ + 2063006, + 5957685 + ], + [ + 2063018, + 5957679 + ], + [ + 2063027, + 5957671 + ], + [ + 2063037, + 5957664 + ], + [ + 2063048, + 5957657 + ], + [ + 2063058, + 5957650 + ], + [ + 2063068, + 5957642 + ], + [ + 2063078, + 5957635 + ], + [ + 2063089, + 5957628 + ], + [ + 2063099, + 5957621 + ], + [ + 2063109, + 5957614 + ], + [ + 2063119, + 5957606 + ], + [ + 2063130, + 5957599 + ], + [ + 2063141, + 5957592 + ], + [ + 2063150, + 5957585 + ], + [ + 2063161, + 5957577 + ], + [ + 2063172, + 5957572 + ], + [ + 2063183, + 5957564 + ], + [ + 2063192, + 5957557 + ], + [ + 2063203, + 5957552 + ], + [ + 2063214, + 5957544 + ], + [ + 2063224, + 5957537 + ], + [ + 2063234, + 5957530 + ], + [ + 2063245, + 5957523 + ], + [ + 2063255, + 5957515 + ], + [ + 2063266, + 5957509 + ], + [ + 2063275, + 5957501 + ], + [ + 2063286, + 5957494 + ], + [ + 2063295, + 5957487 + ], + [ + 2063305, + 5957479 + ], + [ + 2063315, + 5957472 + ], + [ + 2063325, + 5957465 + ], + [ + 2063336, + 5957458 + ], + [ + 2063345, + 5957450 + ], + [ + 2063356, + 5957444 + ], + [ + 2063366, + 5957436 + ], + [ + 2063377, + 5957429 + ], + [ + 2063388, + 5957422 + ], + [ + 2063398, + 5957415 + ], + [ + 2063408, + 5957408 + ], + [ + 2063419, + 5957402 + ], + [ + 2063428, + 5957395 + ], + [ + 2063439, + 5957387 + ], + [ + 2063450, + 5957382 + ], + [ + 2063460, + 5957374 + ], + [ + 2063469, + 5957367 + ], + [ + 2063481, + 5957360 + ], + [ + 2063491, + 5957353 + ], + [ + 2063502, + 5957346 + ], + [ + 2063512, + 5957339 + ], + [ + 2063523, + 5957332 + ], + [ + 2063533, + 5957324 + ], + [ + 2063544, + 5957317 + ], + [ + 2063554, + 5957309 + ], + [ + 2063564, + 5957302 + ], + [ + 2063575, + 5957294 + ], + [ + 2063584, + 5957288 + ], + [ + 2063595, + 5957280 + ], + [ + 2063605, + 5957272 + ], + [ + 2063615, + 5957265 + ], + [ + 2063625, + 5957258 + ], + [ + 2063635, + 5957251 + ], + [ + 2063646, + 5957243 + ], + [ + 2063657, + 5957236 + ], + [ + 2063666, + 5957230 + ], + [ + 2063677, + 5957223 + ], + [ + 2063687, + 5957215 + ], + [ + 2063698, + 5957210 + ], + [ + 2063707, + 5957203 + ], + [ + 2063718, + 5957195 + ], + [ + 2063728, + 5957189 + ], + [ + 2063739, + 5957181 + ], + [ + 2063748, + 5957174 + ], + [ + 2063759, + 5957166 + ], + [ + 2063769, + 5957159 + ], + [ + 2063779, + 5957151 + ], + [ + 2063789, + 5957144 + ], + [ + 2063800, + 5957137 + ], + [ + 2063810, + 5957130 + ], + [ + 2063820, + 5957123 + ], + [ + 2063830, + 5957116 + ], + [ + 2063841, + 5957109 + ], + [ + 2063852, + 5957102 + ], + [ + 2063861, + 5957095 + ], + [ + 2063872, + 5957087 + ], + [ + 2063883, + 5957082 + ], + [ + 2063893, + 5957074 + ], + [ + 2063903, + 5957067 + ], + [ + 2063914, + 5957061 + ], + [ + 2063925, + 5957055 + ], + [ + 2063935, + 5957048 + ], + [ + 2063947, + 5957043 + ], + [ + 2063956, + 5957036 + ], + [ + 2063966, + 5957028 + ], + [ + 2063979, + 5957023 + ], + [ + 2063989, + 5957015 + ], + [ + 2063999, + 5957008 + ], + [ + 2064011, + 5957002 + ], + [ + 2064021, + 5956995 + ], + [ + 2064032, + 5956987 + ], + [ + 2064042, + 5956981 + ], + [ + 2064053, + 5956973 + ], + [ + 2064063, + 5956966 + ], + [ + 2064073, + 5956960 + ], + [ + 2064084, + 5956952 + ], + [ + 2064094, + 5956945 + ], + [ + 2064105, + 5956939 + ], + [ + 2064114, + 5956932 + ], + [ + 2064125, + 5956924 + ], + [ + 2064135, + 5956917 + ], + [ + 2064146, + 5956909 + ], + [ + 2064155, + 5956902 + ], + [ + 2064166, + 5956895 + ], + [ + 2064176, + 5956888 + ], + [ + 2064187, + 5956881 + ], + [ + 2064197, + 5956875 + ], + [ + 2064207, + 5956868 + ], + [ + 2064218, + 5956860 + ], + [ + 2064229, + 5956854 + ], + [ + 2064238, + 5956846 + ], + [ + 2064249, + 5956839 + ], + [ + 2064260, + 5956832 + ], + [ + 2064270, + 5956825 + ], + [ + 2064280, + 5956817 + ], + [ + 2064290, + 5956812 + ], + [ + 2064301, + 5956805 + ], + [ + 2064311, + 5956797 + ], + [ + 2064321, + 5956792 + ], + [ + 2064332, + 5956784 + ], + [ + 2064342, + 5956777 + ], + [ + 2064353, + 5956771 + ], + [ + 2064363, + 5956764 + ], + [ + 2064374, + 5956756 + ], + [ + 2064384, + 5956751 + ], + [ + 2064395, + 5956743 + ], + [ + 2064405, + 5956736 + ], + [ + 2064416, + 5956729 + ], + [ + 2064426, + 5956722 + ], + [ + 2064437, + 5956715 + ], + [ + 2064447, + 5956707 + ], + [ + 2064458, + 5956701 + ], + [ + 2064468, + 5956693 + ], + [ + 2064479, + 5956686 + ], + [ + 2064488, + 5956679 + ], + [ + 2064499, + 5956672 + ], + [ + 2064510, + 5956665 + ], + [ + 2064521, + 5956658 + ], + [ + 2064530, + 5956652 + ], + [ + 2064541, + 5956644 + ], + [ + 2064552, + 5956637 + ], + [ + 2064561, + 5956630 + ], + [ + 2064572, + 5956625 + ], + [ + 2064583, + 5956617 + ], + [ + 2064594, + 5956610 + ], + [ + 2064604, + 5956603 + ], + [ + 2064614, + 5956596 + ], + [ + 2064624, + 5956588 + ], + [ + 2064635, + 5956583 + ], + [ + 2064645, + 5956576 + ], + [ + 2064655, + 5956568 + ], + [ + 2064665, + 5956563 + ], + [ + 2064676, + 5956555 + ], + [ + 2064686, + 5956548 + ], + [ + 2064696, + 5956542 + ], + [ + 2064707, + 5956535 + ], + [ + 2064718, + 5956527 + ], + [ + 2064730, + 5956522 + ], + [ + 2064739, + 5956514 + ], + [ + 2064750, + 5956507 + ], + [ + 2064761, + 5956500 + ], + [ + 2064771, + 5956493 + ], + [ + 2064781, + 5956486 + ], + [ + 2064792, + 5956479 + ], + [ + 2064803, + 5956472 + ], + [ + 2064812, + 5956464 + ], + [ + 2064823, + 5956458 + ], + [ + 2064833, + 5956450 + ], + [ + 2064844, + 5956443 + ], + [ + 2064853, + 5956436 + ], + [ + 2064863, + 5956429 + ], + [ + 2064874, + 5956423 + ], + [ + 2064885, + 5956416 + ], + [ + 2064894, + 5956409 + ], + [ + 2064905, + 5956401 + ], + [ + 2064916, + 5956396 + ], + [ + 2064926, + 5956388 + ], + [ + 2064936, + 5956381 + ], + [ + 2064947, + 5956374 + ], + [ + 2064958, + 5956367 + ], + [ + 2064968, + 5956359 + ], + [ + 2064978, + 5956352 + ], + [ + 2064988, + 5956346 + ], + [ + 2064999, + 5956338 + ], + [ + 2065010, + 5956332 + ], + [ + 2065019, + 5956324 + ], + [ + 2065030, + 5956317 + ], + [ + 2065041, + 5956311 + ], + [ + 2065051, + 5956304 + ], + [ + 2065061, + 5956296 + ], + [ + 2065072, + 5956291 + ], + [ + 2065083, + 5956283 + ], + [ + 2065093, + 5956276 + ], + [ + 2065103, + 5956270 + ], + [ + 2065114, + 5956263 + ], + [ + 2065124, + 5956256 + ], + [ + 2065135, + 5956249 + ], + [ + 2065145, + 5956242 + ], + [ + 2065155, + 5956234 + ], + [ + 2065166, + 5956227 + ], + [ + 2065177, + 5956220 + ], + [ + 2065186, + 5956213 + ], + [ + 2065197, + 5956205 + ], + [ + 2065207, + 5956198 + ], + [ + 2065217, + 5956191 + ], + [ + 2065227, + 5956183 + ], + [ + 2065238, + 5956176 + ], + [ + 2065248, + 5956168 + ], + [ + 2065257, + 5956162 + ], + [ + 2065268, + 5956154 + ], + [ + 2065278, + 5956147 + ], + [ + 2065289, + 5956140 + ], + [ + 2065298, + 5956133 + ], + [ + 2065309, + 5956126 + ], + [ + 2065319, + 5956119 + ], + [ + 2065330, + 5956112 + ], + [ + 2065339, + 5956104 + ], + [ + 2065350, + 5956098 + ], + [ + 2065360, + 5956090 + ], + [ + 2065371, + 5956083 + ], + [ + 2065381, + 5956077 + ], + [ + 2065391, + 5956070 + ], + [ + 2065402, + 5956061 + ], + [ + 2065413, + 5956057 + ], + [ + 2065422, + 5956050 + ], + [ + 2065432, + 5956042 + ], + [ + 2065444, + 5956037 + ], + [ + 2065454, + 5956029 + ], + [ + 2065464, + 5956022 + ], + [ + 2065475, + 5956015 + ], + [ + 2065486, + 5956008 + ], + [ + 2065496, + 5956000 + ], + [ + 2065507, + 5955994 + ], + [ + 2065517, + 5955986 + ], + [ + 2065528, + 5955979 + ], + [ + 2065539, + 5955972 + ], + [ + 2065548, + 5955965 + ], + [ + 2065559, + 5955958 + ], + [ + 2065569, + 5955952 + ], + [ + 2065579, + 5955946 + ], + [ + 2065589, + 5955938 + ], + [ + 2065600, + 5955932 + ], + [ + 2065611, + 5955924 + ], + [ + 2065621, + 5955917 + ], + [ + 2065632, + 5955909 + ], + [ + 2065642, + 5955902 + ], + [ + 2065653, + 5955894 + ], + [ + 2065663, + 5955887 + ], + [ + 2065674, + 5955880 + ], + [ + 2065684, + 5955872 + ], + [ + 2065695, + 5955866 + ], + [ + 2065705, + 5955858 + ], + [ + 2065715, + 5955851 + ], + [ + 2065726, + 5955845 + ], + [ + 2065736, + 5955838 + ], + [ + 2065746, + 5955830 + ], + [ + 2065756, + 5955823 + ], + [ + 2065766, + 5955816 + ], + [ + 2065776, + 5955808 + ], + [ + 2065785, + 5955802 + ], + [ + 2065795, + 5955794 + ], + [ + 2065806, + 5955787 + ], + [ + 2065816, + 5955780 + ], + [ + 2065826, + 5955773 + ], + [ + 2065836, + 5955765 + ], + [ + 2065847, + 5955759 + ], + [ + 2065856, + 5955752 + ], + [ + 2065866, + 5955744 + ], + [ + 2065878, + 5955738 + ], + [ + 2065888, + 5955730 + ], + [ + 2065897, + 5955723 + ], + [ + 2065909, + 5955715 + ], + [ + 2065919, + 5955708 + ], + [ + 2065930, + 5955700 + ], + [ + 2065940, + 5955695 + ], + [ + 2065951, + 5955687 + ], + [ + 2065961, + 5955680 + ], + [ + 2065972, + 5955674 + ], + [ + 2065981, + 5955666 + ], + [ + 2065992, + 5955659 + ], + [ + 2066003, + 5955652 + ], + [ + 2066013, + 5955645 + ], + [ + 2066023, + 5955637 + ], + [ + 2066033, + 5955630 + ], + [ + 2066043, + 5955622 + ], + [ + 2066053, + 5955615 + ], + [ + 2066063, + 5955609 + ], + [ + 2066073, + 5955601 + ], + [ + 2066084, + 5955594 + ], + [ + 2066093, + 5955586 + ], + [ + 2066103, + 5955579 + ], + [ + 2066114, + 5955571 + ], + [ + 2066124, + 5955565 + ], + [ + 2066133, + 5955557 + ], + [ + 2066143, + 5955550 + ], + [ + 2066154, + 5955543 + ], + [ + 2066164, + 5955535 + ], + [ + 2066173, + 5955528 + ], + [ + 2066184, + 5955520 + ], + [ + 2066194, + 5955513 + ], + [ + 2066204, + 5955505 + ], + [ + 2066214, + 5955498 + ], + [ + 2066225, + 5955490 + ], + [ + 2066235, + 5955483 + ], + [ + 2066244, + 5955475 + ], + [ + 2066255, + 5955467 + ], + [ + 2066265, + 5955460 + ], + [ + 2066276, + 5955454 + ], + [ + 2066286, + 5955447 + ], + [ + 2066296, + 5955439 + ], + [ + 2066307, + 5955434 + ], + [ + 2066317, + 5955425 + ], + [ + 2066327, + 5955418 + ], + [ + 2066337, + 5955412 + ], + [ + 2066347, + 5955404 + ], + [ + 2066357, + 5955397 + ], + [ + 2066368, + 5955391 + ], + [ + 2066378, + 5955384 + ], + [ + 2066388, + 5955376 + ], + [ + 2066399, + 5955370 + ], + [ + 2066410, + 5955362 + ], + [ + 2066420, + 5955355 + ], + [ + 2066432, + 5955348 + ], + [ + 2066442, + 5955341 + ], + [ + 2066452, + 5955334 + ], + [ + 2066464, + 5955327 + ], + [ + 2066474, + 5955321 + ], + [ + 2066484, + 5955313 + ], + [ + 2066495, + 5955307 + ], + [ + 2066505, + 5955300 + ], + [ + 2066516, + 5955293 + ], + [ + 2066525, + 5955286 + ], + [ + 2066536, + 5955279 + ], + [ + 2066547, + 5955271 + ], + [ + 2066557, + 5955266 + ], + [ + 2066567, + 5955258 + ], + [ + 2066578, + 5955251 + ], + [ + 2066588, + 5955245 + ], + [ + 2066599, + 5955238 + ], + [ + 2066609, + 5955231 + ], + [ + 2066619, + 5955225 + ], + [ + 2066630, + 5955218 + ], + [ + 2066641, + 5955210 + ], + [ + 2066650, + 5955204 + ], + [ + 2066661, + 5955197 + ], + [ + 2066671, + 5955190 + ], + [ + 2066682, + 5955182 + ], + [ + 2066692, + 5955176 + ], + [ + 2066703, + 5955168 + ], + [ + 2066713, + 5955161 + ], + [ + 2066724, + 5955154 + ], + [ + 2066734, + 5955147 + ], + [ + 2066744, + 5955140 + ], + [ + 2066755, + 5955133 + ], + [ + 2066766, + 5955126 + ], + [ + 2066776, + 5955119 + ], + [ + 2066786, + 5955113 + ], + [ + 2066797, + 5955105 + ], + [ + 2066807, + 5955098 + ], + [ + 2066817, + 5955090 + ], + [ + 2066828, + 5955084 + ], + [ + 2066838, + 5955077 + ], + [ + 2066849, + 5955070 + ], + [ + 2066859, + 5955063 + ], + [ + 2066869, + 5955055 + ], + [ + 2066880, + 5955049 + ], + [ + 2066890, + 5955041 + ], + [ + 2066900, + 5955035 + ], + [ + 2066911, + 5955027 + ], + [ + 2066922, + 5955021 + ], + [ + 2066931, + 5955014 + ], + [ + 2066941, + 5955006 + ], + [ + 2066951, + 5955000 + ], + [ + 2066961, + 5954992 + ], + [ + 2066972, + 5954986 + ], + [ + 2066982, + 5954978 + ], + [ + 2066992, + 5954971 + ], + [ + 2067002, + 5954964 + ], + [ + 2067012, + 5954957 + ], + [ + 2067023, + 5954950 + ], + [ + 2067033, + 5954943 + ], + [ + 2067044, + 5954936 + ], + [ + 2067053, + 5954929 + ], + [ + 2067064, + 5954922 + ], + [ + 2067075, + 5954915 + ], + [ + 2067085, + 5954909 + ], + [ + 2067095, + 5954901 + ], + [ + 2067106, + 5954895 + ], + [ + 2067118, + 5954887 + ], + [ + 2067128, + 5954880 + ], + [ + 2067138, + 5954873 + ], + [ + 2067150, + 5954866 + ], + [ + 2067160, + 5954859 + ], + [ + 2067171, + 5954852 + ], + [ + 2067181, + 5954846 + ], + [ + 2067191, + 5954838 + ], + [ + 2067202, + 5954832 + ], + [ + 2067212, + 5954824 + ], + [ + 2067221, + 5954818 + ], + [ + 2067232, + 5954810 + ], + [ + 2067243, + 5954803 + ], + [ + 2067253, + 5954796 + ], + [ + 2067263, + 5954789 + ], + [ + 2067273, + 5954782 + ], + [ + 2067284, + 5954775 + ], + [ + 2067295, + 5954768 + ], + [ + 2067304, + 5954762 + ], + [ + 2067315, + 5954755 + ], + [ + 2067325, + 5954748 + ], + [ + 2067336, + 5954742 + ], + [ + 2067346, + 5954735 + ], + [ + 2067357, + 5954728 + ], + [ + 2067368, + 5954721 + ], + [ + 2067379, + 5954714 + ], + [ + 2067388, + 5954708 + ], + [ + 2067400, + 5954700 + ], + [ + 2067410, + 5954694 + ], + [ + 2067421, + 5954686 + ], + [ + 2067430, + 5954679 + ], + [ + 2067441, + 5954672 + ], + [ + 2067452, + 5954666 + ], + [ + 2067463, + 5954658 + ], + [ + 2067473, + 5954652 + ], + [ + 2067484, + 5954644 + ], + [ + 2067494, + 5954637 + ], + [ + 2067504, + 5954630 + ], + [ + 2067514, + 5954623 + ], + [ + 2067524, + 5954615 + ], + [ + 2067535, + 5954608 + ], + [ + 2067545, + 5954602 + ], + [ + 2067555, + 5954593 + ], + [ + 2067565, + 5954587 + ], + [ + 2067576, + 5954580 + ], + [ + 2067585, + 5954572 + ], + [ + 2067596, + 5954565 + ], + [ + 2067607, + 5954558 + ], + [ + 2067617, + 5954551 + ], + [ + 2067627, + 5954544 + ], + [ + 2067638, + 5954537 + ], + [ + 2067648, + 5954529 + ], + [ + 2067659, + 5954523 + ], + [ + 2067669, + 5954515 + ], + [ + 2067678, + 5954509 + ], + [ + 2067689, + 5954501 + ], + [ + 2067700, + 5954495 + ], + [ + 2067709, + 5954487 + ], + [ + 2067720, + 5954480 + ], + [ + 2067730, + 5954474 + ], + [ + 2067740, + 5954466 + ], + [ + 2067750, + 5954459 + ], + [ + 2067760, + 5954452 + ], + [ + 2067770, + 5954445 + ], + [ + 2067781, + 5954437 + ], + [ + 2067791, + 5954431 + ], + [ + 2067802, + 5954423 + ], + [ + 2067813, + 5954417 + ], + [ + 2067824, + 5954409 + ], + [ + 2067833, + 5954403 + ], + [ + 2067844, + 5954397 + ], + [ + 2067855, + 5954390 + ], + [ + 2067866, + 5954384 + ], + [ + 2067876, + 5954377 + ], + [ + 2067887, + 5954371 + ], + [ + 2067897, + 5954363 + ], + [ + 2067908, + 5954357 + ], + [ + 2067918, + 5954350 + ], + [ + 2067928, + 5954343 + ], + [ + 2067939, + 5954335 + ], + [ + 2067950, + 5954329 + ], + [ + 2067960, + 5954321 + ], + [ + 2067971, + 5954314 + ], + [ + 2067982, + 5954307 + ], + [ + 2067992, + 5954299 + ], + [ + 2068002, + 5954292 + ], + [ + 2068013, + 5954285 + ], + [ + 2068022, + 5954278 + ], + [ + 2068033, + 5954271 + ], + [ + 2068043, + 5954264 + ], + [ + 2068053, + 5954257 + ], + [ + 2068063, + 5954251 + ], + [ + 2068074, + 5954244 + ], + [ + 2068083, + 5954236 + ], + [ + 2068094, + 5954230 + ], + [ + 2068105, + 5954223 + ], + [ + 2068116, + 5954216 + ], + [ + 2068126, + 5954209 + ], + [ + 2068136, + 5954202 + ], + [ + 2068147, + 5954194 + ], + [ + 2068157, + 5954188 + ], + [ + 2068168, + 5954181 + ], + [ + 2068179, + 5954174 + ], + [ + 2068190, + 5954167 + ], + [ + 2068199, + 5954160 + ], + [ + 2068211, + 5954154 + ], + [ + 2068221, + 5954146 + ], + [ + 2068232, + 5954140 + ], + [ + 2068241, + 5954132 + ], + [ + 2068252, + 5954126 + ], + [ + 2068263, + 5954119 + ], + [ + 2068273, + 5954112 + ], + [ + 2068283, + 5954105 + ], + [ + 2068294, + 5954098 + ], + [ + 2068304, + 5954090 + ], + [ + 2068315, + 5954084 + ], + [ + 2068325, + 5954078 + ], + [ + 2068334, + 5954070 + ], + [ + 2068345, + 5954064 + ], + [ + 2068355, + 5954056 + ], + [ + 2068364, + 5954050 + ], + [ + 2068375, + 5954043 + ], + [ + 2068386, + 5954036 + ], + [ + 2068396, + 5954029 + ], + [ + 2068407, + 5954023 + ], + [ + 2068417, + 5954016 + ], + [ + 2068429, + 5954009 + ], + [ + 2068439, + 5954003 + ], + [ + 2068450, + 5953996 + ], + [ + 2068461, + 5953988 + ], + [ + 2068472, + 5953981 + ], + [ + 2068483, + 5953975 + ], + [ + 2068492, + 5953967 + ], + [ + 2068503, + 5953960 + ], + [ + 2068514, + 5953953 + ], + [ + 2068524, + 5953946 + ], + [ + 2068534, + 5953939 + ], + [ + 2068544, + 5953933 + ], + [ + 2068554, + 5953925 + ], + [ + 2068565, + 5953918 + ], + [ + 2068575, + 5953912 + ], + [ + 2068585, + 5953904 + ], + [ + 2068595, + 5953897 + ], + [ + 2068606, + 5953890 + ], + [ + 2068615, + 5953882 + ], + [ + 2068626, + 5953875 + ], + [ + 2068637, + 5953869 + ], + [ + 2068647, + 5953860 + ], + [ + 2068657, + 5953854 + ], + [ + 2068668, + 5953848 + ], + [ + 2068679, + 5953839 + ], + [ + 2068689, + 5953833 + ], + [ + 2068699, + 5953826 + ], + [ + 2068710, + 5953819 + ], + [ + 2068721, + 5953811 + ], + [ + 2068731, + 5953805 + ], + [ + 2068741, + 5953797 + ], + [ + 2068752, + 5953791 + ], + [ + 2068762, + 5953783 + ], + [ + 2068773, + 5953776 + ], + [ + 2068782, + 5953770 + ], + [ + 2068793, + 5953762 + ], + [ + 2068803, + 5953755 + ], + [ + 2068814, + 5953748 + ], + [ + 2068823, + 5953741 + ], + [ + 2068833, + 5953734 + ], + [ + 2068844, + 5953728 + ], + [ + 2068854, + 5953720 + ], + [ + 2068864, + 5953713 + ], + [ + 2068875, + 5953706 + ], + [ + 2068886, + 5953699 + ], + [ + 2068896, + 5953694 + ], + [ + 2068906, + 5953686 + ], + [ + 2068917, + 5953680 + ], + [ + 2068927, + 5953672 + ], + [ + 2068938, + 5953666 + ], + [ + 2068948, + 5953659 + ], + [ + 2068959, + 5953653 + ], + [ + 2068970, + 5953645 + ], + [ + 2068981, + 5953639 + ], + [ + 2068990, + 5953632 + ], + [ + 2069001, + 5953626 + ], + [ + 2069012, + 5953620 + ], + [ + 2069023, + 5953613 + ], + [ + 2069033, + 5953606 + ], + [ + 2069044, + 5953599 + ], + [ + 2069055, + 5953592 + ], + [ + 2069066, + 5953584 + ], + [ + 2069076, + 5953578 + ], + [ + 2069086, + 5953570 + ], + [ + 2069097, + 5953563 + ], + [ + 2069108, + 5953556 + ], + [ + 2069118, + 5953549 + ], + [ + 2069129, + 5953542 + ], + [ + 2069140, + 5953535 + ], + [ + 2069150, + 5953529 + ], + [ + 2069160, + 5953522 + ], + [ + 2069170, + 5953516 + ], + [ + 2069180, + 5953508 + ], + [ + 2069191, + 5953502 + ], + [ + 2069200, + 5953494 + ], + [ + 2069210, + 5953489 + ], + [ + 2069221, + 5953481 + ], + [ + 2069232, + 5953475 + ], + [ + 2069241, + 5953466 + ], + [ + 2069252, + 5953460 + ], + [ + 2069263, + 5953453 + ], + [ + 2069274, + 5953445 + ], + [ + 2069284, + 5953439 + ], + [ + 2069295, + 5953431 + ], + [ + 2069305, + 5953424 + ], + [ + 2069315, + 5953417 + ], + [ + 2069326, + 5953410 + ], + [ + 2069336, + 5953403 + ], + [ + 2069347, + 5953396 + ], + [ + 2069357, + 5953389 + ], + [ + 2069367, + 5953383 + ], + [ + 2069378, + 5953377 + ], + [ + 2069388, + 5953369 + ], + [ + 2069398, + 5953363 + ], + [ + 2069408, + 5953356 + ], + [ + 2069418, + 5953349 + ], + [ + 2069429, + 5953342 + ], + [ + 2069440, + 5953336 + ], + [ + 2069450, + 5953328 + ], + [ + 2069461, + 5953321 + ], + [ + 2069471, + 5953314 + ], + [ + 2069481, + 5953307 + ], + [ + 2069492, + 5953300 + ], + [ + 2069503, + 5953293 + ], + [ + 2069514, + 5953286 + ], + [ + 2069524, + 5953279 + ], + [ + 2069535, + 5953272 + ], + [ + 2069545, + 5953265 + ], + [ + 2069557, + 5953258 + ], + [ + 2069566, + 5953250 + ], + [ + 2069577, + 5953244 + ], + [ + 2069588, + 5953237 + ], + [ + 2069599, + 5953230 + ], + [ + 2069608, + 5953223 + ], + [ + 2069619, + 5953217 + ], + [ + 2069629, + 5953210 + ], + [ + 2069640, + 5953203 + ], + [ + 2069651, + 5953198 + ], + [ + 2069661, + 5953190 + ], + [ + 2069671, + 5953183 + ], + [ + 2069682, + 5953176 + ], + [ + 2069693, + 5953170 + ], + [ + 2069702, + 5953162 + ], + [ + 2069713, + 5953156 + ], + [ + 2069724, + 5953148 + ], + [ + 2069734, + 5953142 + ], + [ + 2069743, + 5953135 + ], + [ + 2069754, + 5953128 + ], + [ + 2069765, + 5953121 + ], + [ + 2069774, + 5953113 + ], + [ + 2069785, + 5953106 + ], + [ + 2069796, + 5953099 + ], + [ + 2069806, + 5953092 + ], + [ + 2069816, + 5953085 + ], + [ + 2069827, + 5953078 + ], + [ + 2069837, + 5953071 + ], + [ + 2069848, + 5953064 + ], + [ + 2069858, + 5953058 + ], + [ + 2069867, + 5953050 + ], + [ + 2069878, + 5953043 + ], + [ + 2069889, + 5953036 + ], + [ + 2069898, + 5953030 + ], + [ + 2069909, + 5953022 + ], + [ + 2069919, + 5953015 + ], + [ + 2069930, + 5953008 + ], + [ + 2069940, + 5953001 + ], + [ + 2069951, + 5952993 + ], + [ + 2069962, + 5952987 + ], + [ + 2069973, + 5952980 + ], + [ + 2069983, + 5952972 + ], + [ + 2069994, + 5952966 + ], + [ + 2070005, + 5952958 + ], + [ + 2070015, + 5952951 + ], + [ + 2070025, + 5952945 + ], + [ + 2070036, + 5952938 + ], + [ + 2070046, + 5952930 + ], + [ + 2070057, + 5952924 + ], + [ + 2070066, + 5952916 + ], + [ + 2070077, + 5952910 + ], + [ + 2070087, + 5952904 + ], + [ + 2070098, + 5952896 + ], + [ + 2070107, + 5952890 + ], + [ + 2070118, + 5952883 + ], + [ + 2070128, + 5952876 + ], + [ + 2070139, + 5952868 + ], + [ + 2070148, + 5952862 + ], + [ + 2070159, + 5952855 + ], + [ + 2070169, + 5952848 + ], + [ + 2070180, + 5952840 + ], + [ + 2070190, + 5952834 + ], + [ + 2070200, + 5952827 + ], + [ + 2070211, + 5952820 + ], + [ + 2070222, + 5952813 + ], + [ + 2070232, + 5952806 + ], + [ + 2070243, + 5952799 + ], + [ + 2070254, + 5952792 + ], + [ + 2070264, + 5952785 + ], + [ + 2070274, + 5952778 + ], + [ + 2070285, + 5952771 + ], + [ + 2070295, + 5952763 + ], + [ + 2070305, + 5952757 + ], + [ + 2070315, + 5952750 + ], + [ + 2070326, + 5952742 + ], + [ + 2070336, + 5952737 + ], + [ + 2070347, + 5952729 + ], + [ + 2070357, + 5952722 + ], + [ + 2070368, + 5952716 + ], + [ + 2070378, + 5952709 + ], + [ + 2070388, + 5952701 + ], + [ + 2070398, + 5952695 + ], + [ + 2070409, + 5952687 + ], + [ + 2070420, + 5952680 + ], + [ + 2070430, + 5952673 + ], + [ + 2070440, + 5952666 + ], + [ + 2070451, + 5952659 + ], + [ + 2070462, + 5952651 + ], + [ + 2070471, + 5952644 + ], + [ + 2070482, + 5952637 + ], + [ + 2070492, + 5952631 + ], + [ + 2070503, + 5952623 + ], + [ + 2070512, + 5952616 + ], + [ + 2070524, + 5952610 + ], + [ + 2070534, + 5952603 + ], + [ + 2070545, + 5952595 + ], + [ + 2070555, + 5952589 + ], + [ + 2070565, + 5952582 + ], + [ + 2070576, + 5952574 + ], + [ + 2070586, + 5952569 + ], + [ + 2070595, + 5952561 + ], + [ + 2070606, + 5952554 + ], + [ + 2070616, + 5952548 + ], + [ + 2070627, + 5952541 + ], + [ + 2070636, + 5952533 + ], + [ + 2070648, + 5952527 + ], + [ + 2070659, + 5952519 + ], + [ + 2070669, + 5952512 + ], + [ + 2070679, + 5952505 + ], + [ + 2070690, + 5952497 + ], + [ + 2070700, + 5952490 + ], + [ + 2070711, + 5952484 + ], + [ + 2070721, + 5952477 + ], + [ + 2070731, + 5952469 + ], + [ + 2070743, + 5952464 + ], + [ + 2070753, + 5952456 + ], + [ + 2070763, + 5952449 + ], + [ + 2070774, + 5952442 + ], + [ + 2070785, + 5952435 + ], + [ + 2070795, + 5952428 + ], + [ + 2070805, + 5952421 + ], + [ + 2070815, + 5952414 + ], + [ + 2070826, + 5952406 + ], + [ + 2070836, + 5952400 + ], + [ + 2070846, + 5952392 + ], + [ + 2070856, + 5952385 + ], + [ + 2070867, + 5952378 + ], + [ + 2070876, + 5952371 + ], + [ + 2070887, + 5952363 + ], + [ + 2070897, + 5952357 + ], + [ + 2070908, + 5952350 + ], + [ + 2070917, + 5952342 + ], + [ + 2070928, + 5952336 + ], + [ + 2070938, + 5952328 + ], + [ + 2070949, + 5952321 + ], + [ + 2070959, + 5952314 + ], + [ + 2070969, + 5952307 + ], + [ + 2070980, + 5952299 + ], + [ + 2070990, + 5952293 + ], + [ + 2071000, + 5952287 + ], + [ + 2071010, + 5952279 + ], + [ + 2071020, + 5952272 + ], + [ + 2071031, + 5952265 + ], + [ + 2071040, + 5952258 + ], + [ + 2071050, + 5952251 + ], + [ + 2071061, + 5952244 + ], + [ + 2071072, + 5952236 + ], + [ + 2071082, + 5952230 + ], + [ + 2071092, + 5952222 + ], + [ + 2071103, + 5952215 + ], + [ + 2071114, + 5952209 + ], + [ + 2071124, + 5952201 + ], + [ + 2071134, + 5952194 + ], + [ + 2071145, + 5952187 + ], + [ + 2071155, + 5952180 + ], + [ + 2071165, + 5952172 + ], + [ + 2071176, + 5952165 + ], + [ + 2071187, + 5952157 + ], + [ + 2071196, + 5952151 + ], + [ + 2071207, + 5952142 + ], + [ + 2071218, + 5952136 + ], + [ + 2071228, + 5952129 + ], + [ + 2071238, + 5952121 + ], + [ + 2071249, + 5952115 + ], + [ + 2071259, + 5952107 + ], + [ + 2071270, + 5952101 + ], + [ + 2071279, + 5952093 + ], + [ + 2071290, + 5952086 + ], + [ + 2071301, + 5952080 + ], + [ + 2071311, + 5952073 + ], + [ + 2071321, + 5952065 + ], + [ + 2071331, + 5952059 + ], + [ + 2071341, + 5952052 + ], + [ + 2071352, + 5952044 + ], + [ + 2071362, + 5952039 + ], + [ + 2071372, + 5952031 + ], + [ + 2071382, + 5952024 + ], + [ + 2071393, + 5952016 + ], + [ + 2071403, + 5952009 + ], + [ + 2071413, + 5952001 + ], + [ + 2071424, + 5951996 + ], + [ + 2071435, + 5951988 + ], + [ + 2071444, + 5951981 + ], + [ + 2071455, + 5951976 + ], + [ + 2071466, + 5951968 + ], + [ + 2071476, + 5951961 + ], + [ + 2071486, + 5951954 + ], + [ + 2071497, + 5951947 + ], + [ + 2071507, + 5951939 + ], + [ + 2071518, + 5951933 + ], + [ + 2071527, + 5951925 + ], + [ + 2071538, + 5951918 + ], + [ + 2071550, + 5951911 + ], + [ + 2071559, + 5951904 + ], + [ + 2071570, + 5951897 + ], + [ + 2071581, + 5951890 + ], + [ + 2071591, + 5951883 + ], + [ + 2071601, + 5951875 + ], + [ + 2071611, + 5951870 + ], + [ + 2071622, + 5951862 + ], + [ + 2071632, + 5951855 + ], + [ + 2071642, + 5951848 + ], + [ + 2071653, + 5951841 + ], + [ + 2071663, + 5951833 + ], + [ + 2071674, + 5951828 + ], + [ + 2071684, + 5951821 + ], + [ + 2071694, + 5951813 + ], + [ + 2071705, + 5951808 + ], + [ + 2071716, + 5951800 + ], + [ + 2071725, + 5951793 + ], + [ + 2071736, + 5951787 + ], + [ + 2071747, + 5951780 + ], + [ + 2071757, + 5951772 + ], + [ + 2071768, + 5951766 + ], + [ + 2071778, + 5951759 + ], + [ + 2071789, + 5951752 + ], + [ + 2071800, + 5951746 + ], + [ + 2071809, + 5951739 + ], + [ + 2071820, + 5951732 + ], + [ + 2071831, + 5951725 + ], + [ + 2071841, + 5951718 + ], + [ + 2071851, + 5951711 + ], + [ + 2071862, + 5951705 + ], + [ + 2071872, + 5951697 + ], + [ + 2071883, + 5951690 + ], + [ + 2071893, + 5951684 + ], + [ + 2071903, + 5951677 + ], + [ + 2071914, + 5951670 + ], + [ + 2071925, + 5951663 + ], + [ + 2071935, + 5951657 + ], + [ + 2071945, + 5951649 + ], + [ + 2071957, + 5951642 + ], + [ + 2071967, + 5951635 + ], + [ + 2071977, + 5951628 + ], + [ + 2071988, + 5951620 + ], + [ + 2071998, + 5951613 + ], + [ + 2072009, + 5951605 + ], + [ + 2072019, + 5951599 + ], + [ + 2072029, + 5951591 + ], + [ + 2072040, + 5951584 + ], + [ + 2072050, + 5951578 + ], + [ + 2072060, + 5951571 + ], + [ + 2072070, + 5951564 + ], + [ + 2072082, + 5951557 + ], + [ + 2072092, + 5951550 + ], + [ + 2072102, + 5951542 + ], + [ + 2072112, + 5951536 + ], + [ + 2072123, + 5951528 + ], + [ + 2072133, + 5951522 + ], + [ + 2072142, + 5951515 + ], + [ + 2072153, + 5951508 + ], + [ + 2072163, + 5951501 + ], + [ + 2072174, + 5951493 + ], + [ + 2072183, + 5951486 + ], + [ + 2072194, + 5951478 + ], + [ + 2072204, + 5951471 + ], + [ + 2072214, + 5951464 + ], + [ + 2072225, + 5951457 + ], + [ + 2072235, + 5951450 + ], + [ + 2072246, + 5951443 + ], + [ + 2072256, + 5951437 + ], + [ + 2072266, + 5951430 + ], + [ + 2072277, + 5951423 + ], + [ + 2072287, + 5951416 + ], + [ + 2072298, + 5951411 + ], + [ + 2072308, + 5951403 + ], + [ + 2072318, + 5951396 + ], + [ + 2072330, + 5951389 + ], + [ + 2072339, + 5951382 + ], + [ + 2072350, + 5951374 + ], + [ + 2072361, + 5951368 + ], + [ + 2072371, + 5951362 + ], + [ + 2072381, + 5951354 + ], + [ + 2072392, + 5951348 + ], + [ + 2072403, + 5951340 + ], + [ + 2072413, + 5951333 + ], + [ + 2072423, + 5951326 + ], + [ + 2072434, + 5951319 + ], + [ + 2072444, + 5951311 + ], + [ + 2072455, + 5951306 + ], + [ + 2072465, + 5951298 + ], + [ + 2072475, + 5951291 + ], + [ + 2072486, + 5951284 + ], + [ + 2072497, + 5951278 + ], + [ + 2072506, + 5951271 + ], + [ + 2072517, + 5951264 + ], + [ + 2072528, + 5951257 + ], + [ + 2072538, + 5951249 + ], + [ + 2072548, + 5951244 + ], + [ + 2072559, + 5951236 + ], + [ + 2072569, + 5951229 + ], + [ + 2072580, + 5951221 + ], + [ + 2072590, + 5951214 + ], + [ + 2072600, + 5951206 + ], + [ + 2072611, + 5951200 + ], + [ + 2072621, + 5951193 + ], + [ + 2072631, + 5951185 + ], + [ + 2072640, + 5951179 + ], + [ + 2072651, + 5951171 + ], + [ + 2072661, + 5951164 + ], + [ + 2072671, + 5951156 + ], + [ + 2072681, + 5951149 + ], + [ + 2072692, + 5951141 + ], + [ + 2072702, + 5951135 + ], + [ + 2072713, + 5951127 + ], + [ + 2072723, + 5951120 + ], + [ + 2072734, + 5951114 + ], + [ + 2072744, + 5951106 + ], + [ + 2072754, + 5951099 + ], + [ + 2072765, + 5951093 + ], + [ + 2072776, + 5951086 + ], + [ + 2072785, + 5951078 + ], + [ + 2072796, + 5951073 + ], + [ + 2072807, + 5951064 + ], + [ + 2072817, + 5951057 + ], + [ + 2072827, + 5951051 + ], + [ + 2072837, + 5951044 + ], + [ + 2072848, + 5951037 + ], + [ + 2072858, + 5951031 + ], + [ + 2072868, + 5951024 + ], + [ + 2072878, + 5951016 + ], + [ + 2072890, + 5951010 + ], + [ + 2072900, + 5951002 + ], + [ + 2072910, + 5950996 + ], + [ + 2072922, + 5950989 + ], + [ + 2072932, + 5950982 + ], + [ + 2072943, + 5950974 + ], + [ + 2072953, + 5950967 + ], + [ + 2072963, + 5950961 + ], + [ + 2072974, + 5950953 + ], + [ + 2072985, + 5950947 + ], + [ + 2072994, + 5950939 + ], + [ + 2073005, + 5950933 + ], + [ + 2073015, + 5950927 + ], + [ + 2073026, + 5950920 + ], + [ + 2073035, + 5950912 + ], + [ + 2073046, + 5950907 + ], + [ + 2073057, + 5950899 + ], + [ + 2073067, + 5950892 + ], + [ + 2073078, + 5950885 + ], + [ + 2073089, + 5950877 + ], + [ + 2073099, + 5950870 + ], + [ + 2073111, + 5950863 + ], + [ + 2073120, + 5950856 + ], + [ + 2073131, + 5950848 + ], + [ + 2073141, + 5950842 + ], + [ + 2073152, + 5950834 + ], + [ + 2073161, + 5950827 + ], + [ + 2073172, + 5950820 + ], + [ + 2073182, + 5950813 + ], + [ + 2073193, + 5950805 + ], + [ + 2073202, + 5950800 + ], + [ + 2073213, + 5950793 + ], + [ + 2073223, + 5950785 + ], + [ + 2073234, + 5950778 + ], + [ + 2073243, + 5950770 + ], + [ + 2073254, + 5950763 + ], + [ + 2073264, + 5950756 + ], + [ + 2073274, + 5950749 + ], + [ + 2073284, + 5950741 + ], + [ + 2073295, + 5950736 + ], + [ + 2073305, + 5950729 + ], + [ + 2073315, + 5950721 + ], + [ + 2073326, + 5950715 + ], + [ + 2073336, + 5950707 + ], + [ + 2073347, + 5950700 + ], + [ + 2073356, + 5950693 + ], + [ + 2073367, + 5950686 + ], + [ + 2073377, + 5950678 + ], + [ + 2073387, + 5950671 + ], + [ + 2073397, + 5950664 + ], + [ + 2073407, + 5950656 + ], + [ + 2073418, + 5950651 + ], + [ + 2073429, + 5950643 + ], + [ + 2073438, + 5950636 + ], + [ + 2073449, + 5950629 + ], + [ + 2073460, + 5950622 + ], + [ + 2073470, + 5950614 + ], + [ + 2073480, + 5950608 + ], + [ + 2073491, + 5950600 + ], + [ + 2073501, + 5950593 + ], + [ + 2073512, + 5950587 + ], + [ + 2073521, + 5950579 + ], + [ + 2073531, + 5950572 + ], + [ + 2073542, + 5950566 + ], + [ + 2073553, + 5950559 + ], + [ + 2073562, + 5950551 + ], + [ + 2073574, + 5950545 + ], + [ + 2073584, + 5950537 + ], + [ + 2073594, + 5950530 + ], + [ + 2073605, + 5950524 + ], + [ + 2073616, + 5950517 + ], + [ + 2073626, + 5950510 + ], + [ + 2073638, + 5950504 + ], + [ + 2073647, + 5950497 + ], + [ + 2073658, + 5950489 + ], + [ + 2073668, + 5950483 + ], + [ + 2073679, + 5950475 + ], + [ + 2073688, + 5950468 + ], + [ + 2073698, + 5950460 + ], + [ + 2073709, + 5950453 + ], + [ + 2073718, + 5950445 + ], + [ + 2073728, + 5950439 + ], + [ + 2073739, + 5950432 + ], + [ + 2073749, + 5950424 + ], + [ + 2073759, + 5950418 + ], + [ + 2073770, + 5950410 + ], + [ + 2073780, + 5950403 + ], + [ + 2073792, + 5950397 + ], + [ + 2073801, + 5950390 + ], + [ + 2073812, + 5950382 + ], + [ + 2073824, + 5950378 + ], + [ + 2073834, + 5950370 + ], + [ + 2073843, + 5950363 + ], + [ + 2073855, + 5950357 + ], + [ + 2073866, + 5950350 + ], + [ + 2073876, + 5950343 + ], + [ + 2073887, + 5950336 + ], + [ + 2073897, + 5950329 + ], + [ + 2073908, + 5950321 + ], + [ + 2073920, + 5950315 + ], + [ + 2073929, + 5950307 + ], + [ + 2073940, + 5950300 + ], + [ + 2073950, + 5950293 + ], + [ + 2073961, + 5950286 + ], + [ + 2073971, + 5950279 + ], + [ + 2073981, + 5950273 + ], + [ + 2073991, + 5950266 + ], + [ + 2074002, + 5950258 + ], + [ + 2074010, + 5950252 + ], + [ + 2074021, + 5950244 + ], + [ + 2074032, + 5950237 + ], + [ + 2074042, + 5950231 + ], + [ + 2074052, + 5950224 + ], + [ + 2074062, + 5950216 + ], + [ + 2074073, + 5950209 + ], + [ + 2074083, + 5950201 + ], + [ + 2074093, + 5950194 + ], + [ + 2074103, + 5950188 + ], + [ + 2074113, + 5950180 + ], + [ + 2074123, + 5950173 + ], + [ + 2074133, + 5950165 + ], + [ + 2074144, + 5950158 + ], + [ + 2074154, + 5950150 + ], + [ + 2074165, + 5950143 + ], + [ + 2074175, + 5950135 + ], + [ + 2074186, + 5950128 + ], + [ + 2074197, + 5950122 + ], + [ + 2074207, + 5950114 + ], + [ + 2074217, + 5950107 + ], + [ + 2074228, + 5950100 + ], + [ + 2074238, + 5950093 + ], + [ + 2074248, + 5950085 + ], + [ + 2074258, + 5950079 + ], + [ + 2074268, + 5950071 + ], + [ + 2074279, + 5950064 + ], + [ + 2074288, + 5950057 + ], + [ + 2074298, + 5950050 + ], + [ + 2074309, + 5950043 + ], + [ + 2074320, + 5950037 + ], + [ + 2074329, + 5950030 + ], + [ + 2074340, + 5950022 + ], + [ + 2074351, + 5950016 + ], + [ + 2074361, + 5950008 + ], + [ + 2074371, + 5950002 + ], + [ + 2074382, + 5949994 + ], + [ + 2074393, + 5949987 + ], + [ + 2074403, + 5949979 + ], + [ + 2074413, + 5949973 + ], + [ + 2074424, + 5949966 + ], + [ + 2074434, + 5949959 + ], + [ + 2074443, + 5949953 + ], + [ + 2074454, + 5949945 + ], + [ + 2074464, + 5949938 + ], + [ + 2074475, + 5949932 + ], + [ + 2074485, + 5949925 + ], + [ + 2074495, + 5949917 + ], + [ + 2074507, + 5949912 + ], + [ + 2074517, + 5949904 + ], + [ + 2074527, + 5949897 + ], + [ + 2074538, + 5949892 + ], + [ + 2074548, + 5949884 + ], + [ + 2074559, + 5949877 + ], + [ + 2074568, + 5949870 + ], + [ + 2074579, + 5949863 + ], + [ + 2074590, + 5949855 + ], + [ + 2074601, + 5949849 + ], + [ + 2074611, + 5949841 + ], + [ + 2074621, + 5949834 + ], + [ + 2074632, + 5949827 + ], + [ + 2074643, + 5949820 + ], + [ + 2074652, + 5949813 + ], + [ + 2074661, + 5949807 + ], + [ + 2074672, + 5949800 + ], + [ + 2074682, + 5949792 + ], + [ + 2074693, + 5949787 + ], + [ + 2074703, + 5949779 + ], + [ + 2074714, + 5949772 + ], + [ + 2074726, + 5949765 + ], + [ + 2074736, + 5949759 + ], + [ + 2074746, + 5949751 + ], + [ + 2074759, + 5949745 + ], + [ + 2074769, + 5949737 + ], + [ + 2074779, + 5949730 + ], + [ + 2074789, + 5949723 + ], + [ + 2074800, + 5949715 + ], + [ + 2074811, + 5949709 + ], + [ + 2074820, + 5949701 + ], + [ + 2074831, + 5949694 + ], + [ + 2074841, + 5949686 + ], + [ + 2074851, + 5949679 + ], + [ + 2074861, + 5949672 + ], + [ + 2074872, + 5949665 + ], + [ + 2074882, + 5949658 + ], + [ + 2074892, + 5949651 + ], + [ + 2074902, + 5949644 + ], + [ + 2074912, + 5949637 + ], + [ + 2074922, + 5949630 + ], + [ + 2074932, + 5949622 + ], + [ + 2074942, + 5949615 + ], + [ + 2074952, + 5949608 + ], + [ + 2074963, + 5949601 + ], + [ + 2074972, + 5949594 + ], + [ + 2074982, + 5949587 + ], + [ + 2074993, + 5949580 + ], + [ + 2075003, + 5949573 + ], + [ + 2075013, + 5949566 + ], + [ + 2075023, + 5949558 + ], + [ + 2075034, + 5949552 + ], + [ + 2075045, + 5949544 + ], + [ + 2075054, + 5949537 + ], + [ + 2075066, + 5949531 + ], + [ + 2075076, + 5949524 + ], + [ + 2075087, + 5949516 + ], + [ + 2075097, + 5949511 + ], + [ + 2075108, + 5949504 + ], + [ + 2075118, + 5949496 + ], + [ + 2075129, + 5949491 + ], + [ + 2075139, + 5949483 + ], + [ + 2075149, + 5949476 + ], + [ + 2075160, + 5949469 + ], + [ + 2075171, + 5949462 + ], + [ + 2075180, + 5949455 + ], + [ + 2075192, + 5949447 + ], + [ + 2075202, + 5949440 + ], + [ + 2075213, + 5949433 + ], + [ + 2075223, + 5949425 + ], + [ + 2075234, + 5949418 + ], + [ + 2075244, + 5949412 + ], + [ + 2075254, + 5949403 + ], + [ + 2075264, + 5949397 + ], + [ + 2075275, + 5949389 + ], + [ + 2075285, + 5949382 + ], + [ + 2075294, + 5949374 + ], + [ + 2075305, + 5949367 + ], + [ + 2075315, + 5949360 + ], + [ + 2075325, + 5949354 + ], + [ + 2075335, + 5949347 + ], + [ + 2075344, + 5949338 + ], + [ + 2075355, + 5949332 + ], + [ + 2075365, + 5949324 + ], + [ + 2075375, + 5949317 + ], + [ + 2075386, + 5949309 + ], + [ + 2075396, + 5949302 + ], + [ + 2075407, + 5949295 + ], + [ + 2075416, + 5949288 + ], + [ + 2075427, + 5949281 + ], + [ + 2075437, + 5949274 + ], + [ + 2075447, + 5949267 + ], + [ + 2075458, + 5949260 + ], + [ + 2075468, + 5949254 + ], + [ + 2075479, + 5949246 + ], + [ + 2075490, + 5949240 + ], + [ + 2075499, + 5949234 + ], + [ + 2075510, + 5949227 + ], + [ + 2075521, + 5949219 + ], + [ + 2075531, + 5949213 + ], + [ + 2075541, + 5949206 + ], + [ + 2075552, + 5949199 + ], + [ + 2075563, + 5949192 + ], + [ + 2075574, + 5949184 + ], + [ + 2075584, + 5949178 + ], + [ + 2075595, + 5949170 + ], + [ + 2075606, + 5949164 + ], + [ + 2075617, + 5949156 + ], + [ + 2075627, + 5949150 + ], + [ + 2075637, + 5949142 + ], + [ + 2075648, + 5949135 + ], + [ + 2075658, + 5949129 + ], + [ + 2075668, + 5949122 + ], + [ + 2075679, + 5949114 + ], + [ + 2075688, + 5949107 + ], + [ + 2075698, + 5949101 + ], + [ + 2075709, + 5949093 + ], + [ + 2075719, + 5949086 + ], + [ + 2075730, + 5949079 + ], + [ + 2075739, + 5949072 + ], + [ + 2075749, + 5949065 + ], + [ + 2075760, + 5949058 + ], + [ + 2075771, + 5949050 + ], + [ + 2075780, + 5949044 + ], + [ + 2075791, + 5949038 + ], + [ + 2075802, + 5949030 + ], + [ + 2075812, + 5949025 + ], + [ + 2075822, + 5949017 + ], + [ + 2075832, + 5949011 + ], + [ + 2075843, + 5949004 + ], + [ + 2075854, + 5948998 + ], + [ + 2075863, + 5948990 + ], + [ + 2075876, + 5948984 + ], + [ + 2075887, + 5948977 + ], + [ + 2075897, + 5948970 + ], + [ + 2075909, + 5948963 + ], + [ + 2075919, + 5948956 + ], + [ + 2075930, + 5948949 + ], + [ + 2075941, + 5948943 + ], + [ + 2075951, + 5948936 + ], + [ + 2075961, + 5948928 + ], + [ + 2075971, + 5948922 + ], + [ + 2075982, + 5948914 + ], + [ + 2075992, + 5948908 + ], + [ + 2076001, + 5948899 + ], + [ + 2076012, + 5948893 + ], + [ + 2076023, + 5948885 + ], + [ + 2076032, + 5948879 + ], + [ + 2076042, + 5948873 + ], + [ + 2076053, + 5948865 + ], + [ + 2076063, + 5948859 + ], + [ + 2076073, + 5948851 + ], + [ + 2076084, + 5948845 + ], + [ + 2076094, + 5948836 + ], + [ + 2076105, + 5948830 + ], + [ + 2076114, + 5948822 + ], + [ + 2076124, + 5948816 + ], + [ + 2076135, + 5948809 + ], + [ + 2076146, + 5948801 + ], + [ + 2076156, + 5948795 + ], + [ + 2076166, + 5948787 + ], + [ + 2076177, + 5948781 + ], + [ + 2076189, + 5948773 + ], + [ + 2076198, + 5948767 + ], + [ + 2076209, + 5948759 + ], + [ + 2076220, + 5948753 + ], + [ + 2076231, + 5948745 + ], + [ + 2076241, + 5948738 + ], + [ + 2076251, + 5948730 + ], + [ + 2076262, + 5948724 + ], + [ + 2076272, + 5948717 + ], + [ + 2076281, + 5948709 + ], + [ + 2076292, + 5948702 + ], + [ + 2076302, + 5948695 + ], + [ + 2076311, + 5948688 + ], + [ + 2076322, + 5948681 + ], + [ + 2076333, + 5948674 + ], + [ + 2076343, + 5948667 + ], + [ + 2076352, + 5948660 + ], + [ + 2076363, + 5948653 + ], + [ + 2076374, + 5948647 + ], + [ + 2076384, + 5948640 + ], + [ + 2076395, + 5948633 + ], + [ + 2076404, + 5948627 + ], + [ + 2076415, + 5948619 + ], + [ + 2076426, + 5948612 + ], + [ + 2076435, + 5948605 + ], + [ + 2076445, + 5948598 + ], + [ + 2076456, + 5948591 + ], + [ + 2076467, + 5948585 + ], + [ + 2076477, + 5948577 + ], + [ + 2076488, + 5948571 + ], + [ + 2076499, + 5948563 + ], + [ + 2076510, + 5948556 + ], + [ + 2076519, + 5948549 + ], + [ + 2076530, + 5948541 + ], + [ + 2076541, + 5948535 + ], + [ + 2076551, + 5948527 + ], + [ + 2076561, + 5948520 + ], + [ + 2076572, + 5948513 + ], + [ + 2076583, + 5948506 + ], + [ + 2076594, + 5948499 + ], + [ + 2076603, + 5948493 + ], + [ + 2076614, + 5948485 + ], + [ + 2076624, + 5948478 + ], + [ + 2076635, + 5948472 + ], + [ + 2076645, + 5948464 + ], + [ + 2076655, + 5948458 + ], + [ + 2076666, + 5948450 + ], + [ + 2076676, + 5948444 + ], + [ + 2076686, + 5948436 + ], + [ + 2076696, + 5948430 + ], + [ + 2076707, + 5948422 + ], + [ + 2076718, + 5948417 + ], + [ + 2076728, + 5948409 + ], + [ + 2076738, + 5948403 + ], + [ + 2076749, + 5948397 + ], + [ + 2076760, + 5948389 + ], + [ + 2076770, + 5948383 + ], + [ + 2076781, + 5948375 + ], + [ + 2076792, + 5948368 + ], + [ + 2076802, + 5948361 + ], + [ + 2076812, + 5948353 + ], + [ + 2076823, + 5948346 + ], + [ + 2076834, + 5948340 + ], + [ + 2076844, + 5948332 + ], + [ + 2076854, + 5948325 + ], + [ + 2076864, + 5948319 + ], + [ + 2076875, + 5948312 + ], + [ + 2076885, + 5948305 + ], + [ + 2076895, + 5948298 + ], + [ + 2076906, + 5948291 + ], + [ + 2076916, + 5948284 + ], + [ + 2076927, + 5948277 + ], + [ + 2076936, + 5948270 + ], + [ + 2076947, + 5948263 + ], + [ + 2076958, + 5948256 + ], + [ + 2076968, + 5948249 + ], + [ + 2076977, + 5948242 + ], + [ + 2076988, + 5948234 + ], + [ + 2076998, + 5948228 + ], + [ + 2077009, + 5948220 + ], + [ + 2077018, + 5948213 + ], + [ + 2077029, + 5948206 + ], + [ + 2077040, + 5948199 + ], + [ + 2077049, + 5948192 + ], + [ + 2077060, + 5948186 + ], + [ + 2077071, + 5948178 + ], + [ + 2077082, + 5948171 + ], + [ + 2077091, + 5948165 + ], + [ + 2077102, + 5948157 + ], + [ + 2077113, + 5948150 + ], + [ + 2077123, + 5948143 + ], + [ + 2077132, + 5948136 + ], + [ + 2077143, + 5948129 + ], + [ + 2077154, + 5948123 + ], + [ + 2077165, + 5948115 + ], + [ + 2077175, + 5948109 + ], + [ + 2077186, + 5948102 + ], + [ + 2077196, + 5948096 + ], + [ + 2077207, + 5948089 + ], + [ + 2077218, + 5948082 + ], + [ + 2077228, + 5948076 + ], + [ + 2077239, + 5948068 + ], + [ + 2077249, + 5948062 + ], + [ + 2077259, + 5948054 + ], + [ + 2077270, + 5948048 + ], + [ + 2077279, + 5948040 + ], + [ + 2077290, + 5948033 + ], + [ + 2077300, + 5948026 + ], + [ + 2077311, + 5948019 + ], + [ + 2077322, + 5948012 + ], + [ + 2077333, + 5948005 + ], + [ + 2077343, + 5947998 + ], + [ + 2077353, + 5947990 + ], + [ + 2077364, + 5947984 + ], + [ + 2077375, + 5947976 + ], + [ + 2077384, + 5947969 + ], + [ + 2077395, + 5947962 + ], + [ + 2077405, + 5947955 + ], + [ + 2077416, + 5947948 + ], + [ + 2077425, + 5947941 + ], + [ + 2077436, + 5947934 + ], + [ + 2077446, + 5947927 + ], + [ + 2077457, + 5947921 + ], + [ + 2077466, + 5947913 + ], + [ + 2077477, + 5947906 + ], + [ + 2077488, + 5947898 + ], + [ + 2077498, + 5947891 + ], + [ + 2077507, + 5947884 + ], + [ + 2077518, + 5947877 + ], + [ + 2077528, + 5947869 + ], + [ + 2077539, + 5947863 + ], + [ + 2077549, + 5947855 + ], + [ + 2077560, + 5947848 + ], + [ + 2077570, + 5947842 + ], + [ + 2077580, + 5947834 + ], + [ + 2077591, + 5947828 + ], + [ + 2077601, + 5947820 + ], + [ + 2077612, + 5947813 + ], + [ + 2077622, + 5947806 + ], + [ + 2077632, + 5947799 + ], + [ + 2077643, + 5947792 + ], + [ + 2077653, + 5947785 + ], + [ + 2077663, + 5947778 + ], + [ + 2077674, + 5947771 + ], + [ + 2077683, + 5947765 + ], + [ + 2077694, + 5947757 + ], + [ + 2077704, + 5947751 + ], + [ + 2077713, + 5947744 + ], + [ + 2077724, + 5947737 + ], + [ + 2077735, + 5947729 + ], + [ + 2077745, + 5947723 + ], + [ + 2077756, + 5947716 + ], + [ + 2077766, + 5947709 + ], + [ + 2077777, + 5947703 + ], + [ + 2077787, + 5947696 + ], + [ + 2077797, + 5947689 + ], + [ + 2077808, + 5947681 + ], + [ + 2077819, + 5947675 + ], + [ + 2077829, + 5947667 + ], + [ + 2077840, + 5947661 + ], + [ + 2077850, + 5947653 + ], + [ + 2077861, + 5947647 + ], + [ + 2077870, + 5947639 + ], + [ + 2077881, + 5947632 + ], + [ + 2077892, + 5947625 + ], + [ + 2077903, + 5947619 + ], + [ + 2077912, + 5947613 + ], + [ + 2077923, + 5947605 + ], + [ + 2077934, + 5947599 + ], + [ + 2077945, + 5947591 + ], + [ + 2077954, + 5947585 + ], + [ + 2077966, + 5947577 + ], + [ + 2077976, + 5947570 + ], + [ + 2077987, + 5947562 + ], + [ + 2077996, + 5947555 + ], + [ + 2078007, + 5947548 + ], + [ + 2078018, + 5947541 + ], + [ + 2078028, + 5947534 + ], + [ + 2078037, + 5947526 + ], + [ + 2078048, + 5947519 + ], + [ + 2078057, + 5947512 + ], + [ + 2078068, + 5947505 + ], + [ + 2078078, + 5947498 + ], + [ + 2078088, + 5947491 + ], + [ + 2078099, + 5947484 + ], + [ + 2078109, + 5947477 + ], + [ + 2078119, + 5947471 + ], + [ + 2078129, + 5947464 + ], + [ + 2078140, + 5947458 + ], + [ + 2078151, + 5947452 + ], + [ + 2078161, + 5947445 + ], + [ + 2078172, + 5947438 + ], + [ + 2078183, + 5947432 + ], + [ + 2078194, + 5947424 + ], + [ + 2078204, + 5947418 + ], + [ + 2078216, + 5947411 + ], + [ + 2078227, + 5947405 + ], + [ + 2078238, + 5947397 + ], + [ + 2078248, + 5947391 + ], + [ + 2078259, + 5947384 + ], + [ + 2078270, + 5947378 + ], + [ + 2078281, + 5947369 + ], + [ + 2078291, + 5947363 + ], + [ + 2078302, + 5947355 + ], + [ + 2078311, + 5947348 + ], + [ + 2078322, + 5947341 + ], + [ + 2078332, + 5947334 + ], + [ + 2078341, + 5947327 + ], + [ + 2078352, + 5947319 + ], + [ + 2078363, + 5947313 + ], + [ + 2078372, + 5947304 + ], + [ + 2078382, + 5947298 + ], + [ + 2078393, + 5947290 + ], + [ + 2078403, + 5947283 + ], + [ + 2078413, + 5947277 + ], + [ + 2078424, + 5947269 + ], + [ + 2078434, + 5947262 + ], + [ + 2078444, + 5947254 + ], + [ + 2078454, + 5947248 + ], + [ + 2078465, + 5947240 + ], + [ + 2078475, + 5947234 + ], + [ + 2078485, + 5947226 + ], + [ + 2078495, + 5947220 + ], + [ + 2078506, + 5947214 + ], + [ + 2078516, + 5947206 + ], + [ + 2078525, + 5947200 + ], + [ + 2078536, + 5947193 + ], + [ + 2078547, + 5947186 + ], + [ + 2078558, + 5947178 + ], + [ + 2078567, + 5947171 + ], + [ + 2078578, + 5947164 + ], + [ + 2078589, + 5947157 + ], + [ + 2078599, + 5947149 + ], + [ + 2078609, + 5947143 + ], + [ + 2078620, + 5947137 + ], + [ + 2078630, + 5947130 + ], + [ + 2078641, + 5947123 + ], + [ + 2078652, + 5947117 + ], + [ + 2078663, + 5947110 + ], + [ + 2078673, + 5947102 + ], + [ + 2078684, + 5947097 + ], + [ + 2078694, + 5947089 + ], + [ + 2078705, + 5947082 + ], + [ + 2078716, + 5947076 + ], + [ + 2078726, + 5947069 + ], + [ + 2078736, + 5947062 + ], + [ + 2078746, + 5947055 + ], + [ + 2078756, + 5947049 + ], + [ + 2078767, + 5947041 + ], + [ + 2078777, + 5947035 + ], + [ + 2078788, + 5947027 + ], + [ + 2078799, + 5947021 + ], + [ + 2078810, + 5947013 + ], + [ + 2078819, + 5947006 + ], + [ + 2078830, + 5946999 + ], + [ + 2078841, + 5946992 + ], + [ + 2078852, + 5946984 + ], + [ + 2078862, + 5946977 + ], + [ + 2078872, + 5946970 + ], + [ + 2078882, + 5946963 + ], + [ + 2078893, + 5946956 + ], + [ + 2078902, + 5946949 + ], + [ + 2078912, + 5946942 + ], + [ + 2078923, + 5946934 + ], + [ + 2078934, + 5946928 + ], + [ + 2078943, + 5946920 + ], + [ + 2078954, + 5946913 + ], + [ + 2078965, + 5946905 + ], + [ + 2078975, + 5946899 + ], + [ + 2078985, + 5946892 + ], + [ + 2078996, + 5946885 + ], + [ + 2079006, + 5946878 + ], + [ + 2079016, + 5946870 + ], + [ + 2079027, + 5946865 + ], + [ + 2079037, + 5946857 + ], + [ + 2079048, + 5946850 + ], + [ + 2079059, + 5946843 + ], + [ + 2079068, + 5946836 + ], + [ + 2079079, + 5946828 + ], + [ + 2079089, + 5946822 + ], + [ + 2079100, + 5946815 + ], + [ + 2079110, + 5946808 + ], + [ + 2079119, + 5946802 + ], + [ + 2079130, + 5946794 + ], + [ + 2079140, + 5946787 + ], + [ + 2079150, + 5946780 + ], + [ + 2079161, + 5946773 + ], + [ + 2079171, + 5946766 + ], + [ + 2079181, + 5946759 + ], + [ + 2079192, + 5946751 + ], + [ + 2079203, + 5946745 + ], + [ + 2079214, + 5946738 + ], + [ + 2079224, + 5946731 + ], + [ + 2079234, + 5946724 + ], + [ + 2079245, + 5946716 + ], + [ + 2079255, + 5946710 + ], + [ + 2079265, + 5946702 + ], + [ + 2079276, + 5946695 + ], + [ + 2079286, + 5946688 + ], + [ + 2079297, + 5946681 + ], + [ + 2079307, + 5946674 + ], + [ + 2079318, + 5946667 + ], + [ + 2079328, + 5946660 + ], + [ + 2079338, + 5946654 + ], + [ + 2079348, + 5946647 + ], + [ + 2079359, + 5946640 + ], + [ + 2079369, + 5946634 + ], + [ + 2079380, + 5946626 + ], + [ + 2079390, + 5946620 + ], + [ + 2079400, + 5946613 + ], + [ + 2079411, + 5946606 + ], + [ + 2079422, + 5946598 + ], + [ + 2079431, + 5946592 + ], + [ + 2079442, + 5946584 + ], + [ + 2079453, + 5946577 + ], + [ + 2079463, + 5946571 + ], + [ + 2079473, + 5946564 + ], + [ + 2079483, + 5946557 + ], + [ + 2079493, + 5946550 + ], + [ + 2079504, + 5946543 + ], + [ + 2079514, + 5946536 + ], + [ + 2079524, + 5946531 + ], + [ + 2079535, + 5946523 + ], + [ + 2079545, + 5946517 + ], + [ + 2079556, + 5946509 + ], + [ + 2079567, + 5946503 + ], + [ + 2079577, + 5946496 + ], + [ + 2079590, + 5946489 + ], + [ + 2079599, + 5946482 + ], + [ + 2079610, + 5946474 + ], + [ + 2079622, + 5946468 + ], + [ + 2079633, + 5946460 + ], + [ + 2079642, + 5946454 + ], + [ + 2079653, + 5946446 + ], + [ + 2079664, + 5946439 + ], + [ + 2079675, + 5946432 + ], + [ + 2079683, + 5946425 + ], + [ + 2079694, + 5946418 + ], + [ + 2079704, + 5946411 + ], + [ + 2079714, + 5946405 + ], + [ + 2079724, + 5946398 + ], + [ + 2079734, + 5946391 + ], + [ + 2079745, + 5946384 + ], + [ + 2079756, + 5946377 + ], + [ + 2079765, + 5946370 + ], + [ + 2079777, + 5946363 + ], + [ + 2079787, + 5946355 + ], + [ + 2079798, + 5946349 + ], + [ + 2079808, + 5946341 + ], + [ + 2079818, + 5946334 + ], + [ + 2079829, + 5946327 + ], + [ + 2079838, + 5946318 + ], + [ + 2079848, + 5946312 + ], + [ + 2079859, + 5946304 + ], + [ + 2079868, + 5946297 + ], + [ + 2079878, + 5946289 + ], + [ + 2079888, + 5946282 + ], + [ + 2079898, + 5946275 + ], + [ + 2079908, + 5946268 + ], + [ + 2079918, + 5946261 + ], + [ + 2079928, + 5946254 + ], + [ + 2079939, + 5946247 + ], + [ + 2079950, + 5946239 + ], + [ + 2079960, + 5946234 + ], + [ + 2079970, + 5946226 + ], + [ + 2079981, + 5946220 + ], + [ + 2079993, + 5946215 + ], + [ + 2080003, + 5946208 + ], + [ + 2080013, + 5946200 + ], + [ + 2080026, + 5946196 + ], + [ + 2080037, + 5946188 + ], + [ + 2080046, + 5946181 + ], + [ + 2080058, + 5946175 + ], + [ + 2080069, + 5946168 + ], + [ + 2080079, + 5946161 + ], + [ + 2080089, + 5946154 + ], + [ + 2080099, + 5946147 + ], + [ + 2080109, + 5946140 + ], + [ + 2080120, + 5946134 + ], + [ + 2080131, + 5946126 + ], + [ + 2080140, + 5946119 + ], + [ + 2080152, + 5946113 + ], + [ + 2080163, + 5946106 + ], + [ + 2080173, + 5946098 + ], + [ + 2080184, + 5946092 + ], + [ + 2080194, + 5946084 + ], + [ + 2080205, + 5946077 + ], + [ + 2080214, + 5946071 + ], + [ + 2080224, + 5946063 + ], + [ + 2080234, + 5946056 + ], + [ + 2080244, + 5946047 + ], + [ + 2080253, + 5946040 + ], + [ + 2080264, + 5946032 + ], + [ + 2080274, + 5946024 + ], + [ + 2080284, + 5946018 + ], + [ + 2080294, + 5946010 + ], + [ + 2080304, + 5946003 + ], + [ + 2080314, + 5945995 + ], + [ + 2080324, + 5945988 + ], + [ + 2080336, + 5945981 + ], + [ + 2080346, + 5945974 + ], + [ + 2080357, + 5945966 + ], + [ + 2080368, + 5945961 + ], + [ + 2080378, + 5945953 + ], + [ + 2080389, + 5945946 + ], + [ + 2080399, + 5945940 + ], + [ + 2080409, + 5945933 + ], + [ + 2080419, + 5945926 + ], + [ + 2080430, + 5945920 + ], + [ + 2080440, + 5945913 + ], + [ + 2080450, + 5945905 + ], + [ + 2080461, + 5945900 + ], + [ + 2080471, + 5945892 + ], + [ + 2080482, + 5945886 + ], + [ + 2080493, + 5945879 + ], + [ + 2080503, + 5945872 + ], + [ + 2080514, + 5945864 + ], + [ + 2080525, + 5945858 + ], + [ + 2080534, + 5945851 + ], + [ + 2080545, + 5945843 + ], + [ + 2080556, + 5945837 + ], + [ + 2080567, + 5945829 + ], + [ + 2080576, + 5945823 + ], + [ + 2080586, + 5945815 + ], + [ + 2080597, + 5945808 + ], + [ + 2080608, + 5945801 + ], + [ + 2080616, + 5945794 + ], + [ + 2080627, + 5945786 + ], + [ + 2080637, + 5945779 + ], + [ + 2080647, + 5945773 + ], + [ + 2080657, + 5945765 + ], + [ + 2080667, + 5945758 + ], + [ + 2080677, + 5945751 + ], + [ + 2080688, + 5945744 + ], + [ + 2080697, + 5945736 + ], + [ + 2080709, + 5945730 + ], + [ + 2080720, + 5945722 + ], + [ + 2080730, + 5945715 + ], + [ + 2080741, + 5945708 + ], + [ + 2080752, + 5945701 + ], + [ + 2080762, + 5945694 + ], + [ + 2080773, + 5945688 + ], + [ + 2080782, + 5945681 + ], + [ + 2080793, + 5945673 + ], + [ + 2080803, + 5945668 + ], + [ + 2080814, + 5945660 + ], + [ + 2080823, + 5945653 + ], + [ + 2080834, + 5945645 + ], + [ + 2080845, + 5945638 + ], + [ + 2080854, + 5945630 + ], + [ + 2080866, + 5945624 + ], + [ + 2080876, + 5945617 + ], + [ + 2080887, + 5945609 + ], + [ + 2080896, + 5945602 + ], + [ + 2080906, + 5945594 + ], + [ + 2080917, + 5945588 + ], + [ + 2080927, + 5945580 + ], + [ + 2080936, + 5945573 + ], + [ + 2080947, + 5945565 + ], + [ + 2080957, + 5945559 + ], + [ + 2080967, + 5945552 + ], + [ + 2080977, + 5945544 + ], + [ + 2080988, + 5945539 + ], + [ + 2080998, + 5945531 + ], + [ + 2081009, + 5945524 + ], + [ + 2081019, + 5945518 + ], + [ + 2081030, + 5945511 + ], + [ + 2081040, + 5945503 + ], + [ + 2081052, + 5945497 + ], + [ + 2081062, + 5945489 + ], + [ + 2081072, + 5945482 + ], + [ + 2081082, + 5945476 + ], + [ + 2081093, + 5945469 + ], + [ + 2081103, + 5945462 + ], + [ + 2081113, + 5945456 + ], + [ + 2081123, + 5945449 + ], + [ + 2081134, + 5945441 + ], + [ + 2081144, + 5945436 + ], + [ + 2081154, + 5945428 + ], + [ + 2081165, + 5945421 + ], + [ + 2081177, + 5945415 + ], + [ + 2081186, + 5945408 + ], + [ + 2081197, + 5945400 + ], + [ + 2081208, + 5945394 + ], + [ + 2081219, + 5945386 + ], + [ + 2081228, + 5945379 + ], + [ + 2081239, + 5945372 + ], + [ + 2081250, + 5945364 + ], + [ + 2081260, + 5945357 + ], + [ + 2081270, + 5945350 + ], + [ + 2081281, + 5945343 + ], + [ + 2081291, + 5945335 + ], + [ + 2081302, + 5945329 + ], + [ + 2081311, + 5945321 + ], + [ + 2081322, + 5945314 + ], + [ + 2081333, + 5945307 + ], + [ + 2081342, + 5945300 + ], + [ + 2081353, + 5945293 + ], + [ + 2081363, + 5945286 + ], + [ + 2081374, + 5945279 + ], + [ + 2081383, + 5945272 + ], + [ + 2081393, + 5945265 + ], + [ + 2081404, + 5945257 + ], + [ + 2081414, + 5945251 + ], + [ + 2081423, + 5945243 + ], + [ + 2081433, + 5945236 + ], + [ + 2081444, + 5945230 + ], + [ + 2081455, + 5945222 + ], + [ + 2081465, + 5945215 + ], + [ + 2081475, + 5945207 + ], + [ + 2081486, + 5945201 + ], + [ + 2081497, + 5945193 + ], + [ + 2081506, + 5945186 + ], + [ + 2081518, + 5945179 + ], + [ + 2081528, + 5945172 + ], + [ + 2081538, + 5945164 + ], + [ + 2081548, + 5945158 + ], + [ + 2081559, + 5945151 + ], + [ + 2081569, + 5945143 + ], + [ + 2081580, + 5945138 + ], + [ + 2081590, + 5945130 + ], + [ + 2081600, + 5945123 + ], + [ + 2081611, + 5945117 + ], + [ + 2081622, + 5945110 + ], + [ + 2081631, + 5945103 + ], + [ + 2081642, + 5945099 + ], + [ + 2081653, + 5945091 + ], + [ + 2081663, + 5945084 + ], + [ + 2081674, + 5945077 + ], + [ + 2081684, + 5945070 + ], + [ + 2081695, + 5945064 + ], + [ + 2081706, + 5945057 + ], + [ + 2081716, + 5945050 + ], + [ + 2081727, + 5945042 + ], + [ + 2081738, + 5945036 + ], + [ + 2081748, + 5945028 + ], + [ + 2081758, + 5945022 + ], + [ + 2081768, + 5945016 + ], + [ + 2081779, + 5945009 + ], + [ + 2081789, + 5945001 + ], + [ + 2081799, + 5944995 + ], + [ + 2081810, + 5944989 + ], + [ + 2081821, + 5944981 + ], + [ + 2081832, + 5944974 + ], + [ + 2081842, + 5944966 + ], + [ + 2081853, + 5944960 + ], + [ + 2081864, + 5944951 + ], + [ + 2081875, + 5944944 + ], + [ + 2081884, + 5944937 + ], + [ + 2081895, + 5944930 + ], + [ + 2081906, + 5944922 + ], + [ + 2081916, + 5944915 + ], + [ + 2081926, + 5944908 + ], + [ + 2081936, + 5944901 + ], + [ + 2081947, + 5944894 + ], + [ + 2081957, + 5944888 + ], + [ + 2081966, + 5944881 + ], + [ + 2081976, + 5944873 + ], + [ + 2081986, + 5944868 + ], + [ + 2081997, + 5944860 + ], + [ + 2082006, + 5944853 + ], + [ + 2082017, + 5944847 + ], + [ + 2082027, + 5944840 + ], + [ + 2082038, + 5944833 + ], + [ + 2082049, + 5944827 + ], + [ + 2082059, + 5944820 + ], + [ + 2082070, + 5944812 + ], + [ + 2082081, + 5944806 + ], + [ + 2082091, + 5944799 + ], + [ + 2082102, + 5944792 + ], + [ + 2082113, + 5944785 + ], + [ + 2082124, + 5944778 + ], + [ + 2082133, + 5944771 + ], + [ + 2082144, + 5944764 + ], + [ + 2082155, + 5944756 + ], + [ + 2082165, + 5944750 + ], + [ + 2082176, + 5944742 + ], + [ + 2082186, + 5944736 + ], + [ + 2082197, + 5944729 + ], + [ + 2082206, + 5944720 + ], + [ + 2082217, + 5944714 + ], + [ + 2082228, + 5944706 + ], + [ + 2082238, + 5944700 + ], + [ + 2082248, + 5944692 + ], + [ + 2082258, + 5944685 + ], + [ + 2082268, + 5944677 + ], + [ + 2082279, + 5944670 + ], + [ + 2082288, + 5944663 + ], + [ + 2082299, + 5944656 + ], + [ + 2082309, + 5944649 + ], + [ + 2082320, + 5944641 + ], + [ + 2082329, + 5944635 + ], + [ + 2082339, + 5944627 + ], + [ + 2082350, + 5944620 + ], + [ + 2082361, + 5944613 + ], + [ + 2082370, + 5944606 + ], + [ + 2082381, + 5944598 + ], + [ + 2082392, + 5944593 + ], + [ + 2082402, + 5944586 + ], + [ + 2082411, + 5944578 + ], + [ + 2082423, + 5944572 + ], + [ + 2082433, + 5944564 + ], + [ + 2082444, + 5944557 + ], + [ + 2082453, + 5944551 + ], + [ + 2082464, + 5944544 + ], + [ + 2082474, + 5944536 + ], + [ + 2082485, + 5944531 + ], + [ + 2082495, + 5944523 + ], + [ + 2082505, + 5944516 + ], + [ + 2082516, + 5944511 + ], + [ + 2082527, + 5944503 + ], + [ + 2082536, + 5944496 + ], + [ + 2082548, + 5944490 + ], + [ + 2082558, + 5944483 + ], + [ + 2082569, + 5944475 + ], + [ + 2082578, + 5944470 + ], + [ + 2082589, + 5944462 + ], + [ + 2082599, + 5944455 + ], + [ + 2082610, + 5944449 + ], + [ + 2082619, + 5944442 + ], + [ + 2082630, + 5944435 + ], + [ + 2082642, + 5944428 + ], + [ + 2082652, + 5944421 + ], + [ + 2082662, + 5944413 + ], + [ + 2082674, + 5944406 + ], + [ + 2082684, + 5944398 + ], + [ + 2082694, + 5944391 + ], + [ + 2082705, + 5944384 + ], + [ + 2082715, + 5944377 + ], + [ + 2082726, + 5944369 + ], + [ + 2082737, + 5944364 + ], + [ + 2082746, + 5944356 + ], + [ + 2082757, + 5944349 + ], + [ + 2082767, + 5944342 + ], + [ + 2082777, + 5944335 + ], + [ + 2082787, + 5944328 + ], + [ + 2082798, + 5944321 + ], + [ + 2082809, + 5944314 + ], + [ + 2082818, + 5944306 + ], + [ + 2082829, + 5944300 + ], + [ + 2082840, + 5944292 + ], + [ + 2082850, + 5944285 + ], + [ + 2082860, + 5944279 + ], + [ + 2082870, + 5944272 + ], + [ + 2082881, + 5944264 + ], + [ + 2082891, + 5944259 + ], + [ + 2082901, + 5944252 + ], + [ + 2082911, + 5944244 + ], + [ + 2082923, + 5944239 + ], + [ + 2082933, + 5944231 + ], + [ + 2082943, + 5944224 + ], + [ + 2082954, + 5944218 + ], + [ + 2082964, + 5944211 + ], + [ + 2082975, + 5944203 + ], + [ + 2082985, + 5944197 + ], + [ + 2082995, + 5944189 + ], + [ + 2083006, + 5944182 + ], + [ + 2083017, + 5944177 + ], + [ + 2083027, + 5944169 + ], + [ + 2083037, + 5944162 + ], + [ + 2083048, + 5944155 + ], + [ + 2083059, + 5944148 + ], + [ + 2083069, + 5944140 + ], + [ + 2083080, + 5944134 + ], + [ + 2083090, + 5944127 + ], + [ + 2083101, + 5944120 + ], + [ + 2083111, + 5944113 + ], + [ + 2083121, + 5944106 + ], + [ + 2083132, + 5944098 + ], + [ + 2083143, + 5944092 + ], + [ + 2083152, + 5944085 + ], + [ + 2083163, + 5944077 + ], + [ + 2083173, + 5944071 + ], + [ + 2083183, + 5944063 + ], + [ + 2083193, + 5944056 + ], + [ + 2083203, + 5944050 + ], + [ + 2083214, + 5944043 + ], + [ + 2083224, + 5944035 + ], + [ + 2083234, + 5944030 + ], + [ + 2083244, + 5944023 + ], + [ + 2083255, + 5944015 + ], + [ + 2083266, + 5944011 + ], + [ + 2083275, + 5944003 + ], + [ + 2083286, + 5943996 + ], + [ + 2083298, + 5943990 + ], + [ + 2083309, + 5943983 + ], + [ + 2083318, + 5943975 + ], + [ + 2083331, + 5943969 + ], + [ + 2083341, + 5943961 + ], + [ + 2083352, + 5943954 + ], + [ + 2083362, + 5943947 + ], + [ + 2083373, + 5943940 + ], + [ + 2083383, + 5943932 + ], + [ + 2083394, + 5943926 + ], + [ + 2083404, + 5943919 + ], + [ + 2083414, + 5943911 + ], + [ + 2083424, + 5943906 + ], + [ + 2083434, + 5943898 + ], + [ + 2083444, + 5943891 + ], + [ + 2083455, + 5943885 + ], + [ + 2083465, + 5943878 + ], + [ + 2083476, + 5943870 + ], + [ + 2083486, + 5943865 + ], + [ + 2083497, + 5943857 + ], + [ + 2083507, + 5943850 + ], + [ + 2083520, + 5943843 + ], + [ + 2083529, + 5943836 + ], + [ + 2083540, + 5943829 + ], + [ + 2083551, + 5943822 + ], + [ + 2083561, + 5943815 + ], + [ + 2083570, + 5943807 + ], + [ + 2083581, + 5943801 + ], + [ + 2083592, + 5943793 + ], + [ + 2083602, + 5943786 + ], + [ + 2083612, + 5943779 + ], + [ + 2083622, + 5943772 + ], + [ + 2083633, + 5943764 + ], + [ + 2083643, + 5943759 + ], + [ + 2083652, + 5943751 + ], + [ + 2083663, + 5943743 + ], + [ + 2083673, + 5943738 + ], + [ + 2083684, + 5943730 + ], + [ + 2083693, + 5943723 + ], + [ + 2083704, + 5943716 + ], + [ + 2083714, + 5943709 + ], + [ + 2083725, + 5943701 + ], + [ + 2083735, + 5943695 + ], + [ + 2083746, + 5943688 + ], + [ + 2083756, + 5943680 + ], + [ + 2083768, + 5943675 + ], + [ + 2083777, + 5943667 + ], + [ + 2083788, + 5943660 + ], + [ + 2083798, + 5943653 + ], + [ + 2083809, + 5943646 + ], + [ + 2083818, + 5943638 + ], + [ + 2083829, + 5943633 + ], + [ + 2083839, + 5943625 + ], + [ + 2083849, + 5943618 + ], + [ + 2083860, + 5943612 + ], + [ + 2083871, + 5943605 + ], + [ + 2083881, + 5943598 + ], + [ + 2083894, + 5943592 + ], + [ + 2083903, + 5943584 + ], + [ + 2083913, + 5943576 + ], + [ + 2083925, + 5943571 + ], + [ + 2083935, + 5943563 + ], + [ + 2083945, + 5943556 + ], + [ + 2083956, + 5943549 + ], + [ + 2083967, + 5943542 + ], + [ + 2083976, + 5943534 + ], + [ + 2083987, + 5943528 + ], + [ + 2083997, + 5943520 + ], + [ + 2084008, + 5943513 + ], + [ + 2084018, + 5943507 + ], + [ + 2084028, + 5943499 + ], + [ + 2084039, + 5943492 + ], + [ + 2084050, + 5943486 + ], + [ + 2084059, + 5943478 + ], + [ + 2084069, + 5943470 + ], + [ + 2084080, + 5943465 + ], + [ + 2084090, + 5943457 + ], + [ + 2084100, + 5943449 + ], + [ + 2084110, + 5943445 + ], + [ + 2084120, + 5943437 + ], + [ + 2084130, + 5943429 + ], + [ + 2084140, + 5943424 + ], + [ + 2084151, + 5943416 + ], + [ + 2084161, + 5943408 + ], + [ + 2084172, + 5943403 + ], + [ + 2084182, + 5943395 + ], + [ + 2084192, + 5943387 + ], + [ + 2084204, + 5943381 + ], + [ + 2084215, + 5943374 + ], + [ + 2084224, + 5943366 + ], + [ + 2084236, + 5943361 + ], + [ + 2084247, + 5943354 + ], + [ + 2084257, + 5943346 + ], + [ + 2084267, + 5943341 + ], + [ + 2084277, + 5943333 + ], + [ + 2084288, + 5943326 + ], + [ + 2084298, + 5943320 + ], + [ + 2084308, + 5943313 + ], + [ + 2084318, + 5943305 + ], + [ + 2084329, + 5943300 + ], + [ + 2084339, + 5943292 + ], + [ + 2084349, + 5943285 + ], + [ + 2084361, + 5943279 + ], + [ + 2084372, + 5943271 + ], + [ + 2084382, + 5943264 + ], + [ + 2084393, + 5943258 + ], + [ + 2084404, + 5943250 + ], + [ + 2084414, + 5943242 + ], + [ + 2084426, + 5943237 + ], + [ + 2084435, + 5943229 + ], + [ + 2084445, + 5943221 + ], + [ + 2084457, + 5943215 + ], + [ + 2084467, + 5943208 + ], + [ + 2084476, + 5943199 + ], + [ + 2084488, + 5943195 + ], + [ + 2084499, + 5943186 + ], + [ + 2084509, + 5943179 + ], + [ + 2084519, + 5943174 + ], + [ + 2084529, + 5943166 + ], + [ + 2084540, + 5943158 + ], + [ + 2084550, + 5943152 + ], + [ + 2084559, + 5943145 + ], + [ + 2084569, + 5943137 + ], + [ + 2084580, + 5943132 + ], + [ + 2084591, + 5943123 + ], + [ + 2084600, + 5943116 + ], + [ + 2084611, + 5943111 + ], + [ + 2084622, + 5943103 + ], + [ + 2084632, + 5943095 + ], + [ + 2084642, + 5943089 + ], + [ + 2084653, + 5943082 + ], + [ + 2084663, + 5943074 + ], + [ + 2084674, + 5943068 + ], + [ + 2084683, + 5943060 + ], + [ + 2084693, + 5943052 + ], + [ + 2084704, + 5943045 + ], + [ + 2084713, + 5943038 + ], + [ + 2084724, + 5943030 + ], + [ + 2084735, + 5943023 + ], + [ + 2084745, + 5943016 + ], + [ + 2084754, + 5943008 + ], + [ + 2084765, + 5943002 + ], + [ + 2084776, + 5942994 + ], + [ + 2084786, + 5942986 + ], + [ + 2084795, + 5942979 + ], + [ + 2084805, + 5942972 + ], + [ + 2084815, + 5942965 + ], + [ + 2084826, + 5942958 + ], + [ + 2084835, + 5942951 + ], + [ + 2084845, + 5942943 + ], + [ + 2084856, + 5942937 + ], + [ + 2084865, + 5942928 + ], + [ + 2084875, + 5942921 + ], + [ + 2084888, + 5942914 + ], + [ + 2084898, + 5942906 + ], + [ + 2084907, + 5942898 + ], + [ + 2084918, + 5942891 + ], + [ + 2084928, + 5942884 + ], + [ + 2084938, + 5942876 + ], + [ + 2084948, + 5942870 + ], + [ + 2084959, + 5942862 + ], + [ + 2084969, + 5942854 + ], + [ + 2084978, + 5942847 + ], + [ + 2084988, + 5942840 + ], + [ + 2084998, + 5942832 + ], + [ + 2085009, + 5942826 + ], + [ + 2085018, + 5942818 + ], + [ + 2085028, + 5942810 + ], + [ + 2085039, + 5942805 + ], + [ + 2085049, + 5942796 + ], + [ + 2085058, + 5942789 + ], + [ + 2085069, + 5942782 + ], + [ + 2085080, + 5942775 + ], + [ + 2085090, + 5942766 + ], + [ + 2085100, + 5942761 + ], + [ + 2085111, + 5942753 + ], + [ + 2085121, + 5942745 + ], + [ + 2085132, + 5942740 + ], + [ + 2085141, + 5942732 + ], + [ + 2085151, + 5942724 + ], + [ + 2085163, + 5942719 + ], + [ + 2085173, + 5942711 + ], + [ + 2085182, + 5942703 + ], + [ + 2085193, + 5942699 + ], + [ + 2085204, + 5942690 + ], + [ + 2085214, + 5942683 + ], + [ + 2085224, + 5942678 + ], + [ + 2085235, + 5942670 + ], + [ + 2085245, + 5942663 + ], + [ + 2085257, + 5942656 + ], + [ + 2085267, + 5942649 + ], + [ + 2085277, + 5942641 + ], + [ + 2085289, + 5942635 + ], + [ + 2085298, + 5942627 + ], + [ + 2085309, + 5942620 + ], + [ + 2085320, + 5942613 + ], + [ + 2085330, + 5942606 + ], + [ + 2085339, + 5942598 + ], + [ + 2085350, + 5942592 + ], + [ + 2085360, + 5942584 + ], + [ + 2085371, + 5942576 + ], + [ + 2085380, + 5942570 + ], + [ + 2085391, + 5942562 + ], + [ + 2085401, + 5942555 + ], + [ + 2085411, + 5942548 + ], + [ + 2085421, + 5942540 + ], + [ + 2085431, + 5942532 + ], + [ + 2085442, + 5942527 + ], + [ + 2085452, + 5942520 + ], + [ + 2085462, + 5942511 + ], + [ + 2085473, + 5942506 + ], + [ + 2085483, + 5942498 + ], + [ + 2085493, + 5942491 + ], + [ + 2085503, + 5942484 + ], + [ + 2085513, + 5942477 + ], + [ + 2085524, + 5942469 + ], + [ + 2085535, + 5942463 + ], + [ + 2085544, + 5942455 + ], + [ + 2085554, + 5942448 + ], + [ + 2085565, + 5942442 + ], + [ + 2085574, + 5942434 + ], + [ + 2085585, + 5942427 + ], + [ + 2085595, + 5942421 + ], + [ + 2085606, + 5942414 + ], + [ + 2085615, + 5942406 + ], + [ + 2085627, + 5942400 + ], + [ + 2085637, + 5942392 + ], + [ + 2085647, + 5942385 + ], + [ + 2085658, + 5942378 + ], + [ + 2085669, + 5942371 + ], + [ + 2085679, + 5942363 + ], + [ + 2085690, + 5942359 + ], + [ + 2085699, + 5942352 + ], + [ + 2085710, + 5942344 + ], + [ + 2085721, + 5942339 + ], + [ + 2085732, + 5942331 + ], + [ + 2085741, + 5942324 + ], + [ + 2085753, + 5942318 + ], + [ + 2085764, + 5942311 + ], + [ + 2085774, + 5942304 + ], + [ + 2085785, + 5942298 + ], + [ + 2085795, + 5942290 + ], + [ + 2085806, + 5942283 + ], + [ + 2085818, + 5942276 + ], + [ + 2085828, + 5942270 + ], + [ + 2085838, + 5942263 + ], + [ + 2085848, + 5942256 + ], + [ + 2085859, + 5942249 + ], + [ + 2085869, + 5942242 + ], + [ + 2085879, + 5942236 + ], + [ + 2085890, + 5942228 + ], + [ + 2085901, + 5942221 + ], + [ + 2085910, + 5942212 + ], + [ + 2085921, + 5942206 + ], + [ + 2085931, + 5942198 + ], + [ + 2085942, + 5942191 + ], + [ + 2085952, + 5942183 + ], + [ + 2085962, + 5942176 + ], + [ + 2085972, + 5942170 + ], + [ + 2085983, + 5942162 + ], + [ + 2085992, + 5942155 + ], + [ + 2086003, + 5942148 + ], + [ + 2086013, + 5942141 + ], + [ + 2086024, + 5942133 + ], + [ + 2086033, + 5942126 + ], + [ + 2086044, + 5942118 + ], + [ + 2086054, + 5942111 + ], + [ + 2086065, + 5942106 + ], + [ + 2086074, + 5942098 + ], + [ + 2086085, + 5942091 + ], + [ + 2086095, + 5942084 + ], + [ + 2086105, + 5942077 + ], + [ + 2086115, + 5942069 + ], + [ + 2086126, + 5942064 + ], + [ + 2086137, + 5942056 + ], + [ + 2086147, + 5942049 + ], + [ + 2086157, + 5942043 + ], + [ + 2086168, + 5942036 + ], + [ + 2086178, + 5942029 + ], + [ + 2086189, + 5942022 + ], + [ + 2086198, + 5942015 + ], + [ + 2086209, + 5942008 + ], + [ + 2086219, + 5942002 + ], + [ + 2086230, + 5941994 + ], + [ + 2086239, + 5941988 + ], + [ + 2086250, + 5941981 + ], + [ + 2086261, + 5941974 + ], + [ + 2086271, + 5941966 + ], + [ + 2086283, + 5941960 + ], + [ + 2086293, + 5941953 + ], + [ + 2086304, + 5941945 + ], + [ + 2086317, + 5941938 + ], + [ + 2086326, + 5941931 + ], + [ + 2086337, + 5941924 + ], + [ + 2086347, + 5941917 + ], + [ + 2086356, + 5941910 + ], + [ + 2086367, + 5941902 + ], + [ + 2086378, + 5941896 + ], + [ + 2086388, + 5941889 + ], + [ + 2086398, + 5941882 + ], + [ + 2086408, + 5941874 + ], + [ + 2086419, + 5941867 + ], + [ + 2086430, + 5941861 + ], + [ + 2086439, + 5941853 + ], + [ + 2086450, + 5941847 + ], + [ + 2086460, + 5941839 + ], + [ + 2086471, + 5941833 + ], + [ + 2086481, + 5941825 + ], + [ + 2086491, + 5941818 + ], + [ + 2086502, + 5941811 + ], + [ + 2086513, + 5941804 + ], + [ + 2086522, + 5941797 + ], + [ + 2086532, + 5941790 + ], + [ + 2086543, + 5941783 + ], + [ + 2086553, + 5941776 + ], + [ + 2086562, + 5941770 + ], + [ + 2086573, + 5941762 + ], + [ + 2086583, + 5941755 + ], + [ + 2086593, + 5941749 + ], + [ + 2086603, + 5941742 + ], + [ + 2086613, + 5941734 + ], + [ + 2086625, + 5941729 + ], + [ + 2086636, + 5941721 + ], + [ + 2086645, + 5941714 + ], + [ + 2086657, + 5941709 + ], + [ + 2086667, + 5941701 + ], + [ + 2086678, + 5941694 + ], + [ + 2086688, + 5941688 + ], + [ + 2086699, + 5941681 + ], + [ + 2086710, + 5941674 + ], + [ + 2086721, + 5941669 + ], + [ + 2086731, + 5941661 + ], + [ + 2086741, + 5941654 + ], + [ + 2086754, + 5941647 + ], + [ + 2086764, + 5941641 + ], + [ + 2086774, + 5941633 + ], + [ + 2086785, + 5941627 + ], + [ + 2086795, + 5941620 + ], + [ + 2086806, + 5941613 + ], + [ + 2086816, + 5941607 + ], + [ + 2086827, + 5941600 + ], + [ + 2086837, + 5941593 + ], + [ + 2086848, + 5941586 + ], + [ + 2086857, + 5941579 + ], + [ + 2086868, + 5941571 + ], + [ + 2086878, + 5941565 + ], + [ + 2086889, + 5941557 + ], + [ + 2086898, + 5941551 + ], + [ + 2086909, + 5941543 + ], + [ + 2086919, + 5941536 + ], + [ + 2086930, + 5941530 + ], + [ + 2086940, + 5941522 + ], + [ + 2086951, + 5941515 + ], + [ + 2086961, + 5941507 + ], + [ + 2086972, + 5941501 + ], + [ + 2086982, + 5941494 + ], + [ + 2086992, + 5941487 + ], + [ + 2087003, + 5941479 + ], + [ + 2087013, + 5941472 + ], + [ + 2087023, + 5941464 + ], + [ + 2087033, + 5941458 + ], + [ + 2087043, + 5941451 + ], + [ + 2087054, + 5941443 + ], + [ + 2087062, + 5941436 + ], + [ + 2087073, + 5941428 + ], + [ + 2087083, + 5941421 + ], + [ + 2087095, + 5941414 + ], + [ + 2087104, + 5941407 + ], + [ + 2087115, + 5941399 + ], + [ + 2087126, + 5941393 + ], + [ + 2087135, + 5941385 + ], + [ + 2087146, + 5941378 + ], + [ + 2087157, + 5941373 + ], + [ + 2087168, + 5941365 + ], + [ + 2087177, + 5941358 + ], + [ + 2087188, + 5941351 + ], + [ + 2087199, + 5941344 + ], + [ + 2087209, + 5941336 + ], + [ + 2087219, + 5941331 + ], + [ + 2087229, + 5941323 + ], + [ + 2087240, + 5941316 + ], + [ + 2087251, + 5941310 + ], + [ + 2087260, + 5941303 + ], + [ + 2087271, + 5941296 + ], + [ + 2087282, + 5941289 + ], + [ + 2087292, + 5941283 + ], + [ + 2087302, + 5941275 + ], + [ + 2087314, + 5941270 + ], + [ + 2087324, + 5941262 + ], + [ + 2087335, + 5941255 + ], + [ + 2087346, + 5941248 + ], + [ + 2087356, + 5941241 + ], + [ + 2087366, + 5941233 + ], + [ + 2087376, + 5941228 + ], + [ + 2087386, + 5941220 + ], + [ + 2087396, + 5941213 + ], + [ + 2087408, + 5941207 + ], + [ + 2087418, + 5941200 + ], + [ + 2087428, + 5941193 + ], + [ + 2087439, + 5941186 + ], + [ + 2087450, + 5941179 + ], + [ + 2087461, + 5941171 + ], + [ + 2087471, + 5941165 + ], + [ + 2087481, + 5941157 + ], + [ + 2087492, + 5941150 + ], + [ + 2087503, + 5941143 + ], + [ + 2087512, + 5941136 + ], + [ + 2087523, + 5941128 + ], + [ + 2087533, + 5941122 + ], + [ + 2087544, + 5941115 + ], + [ + 2087554, + 5941107 + ], + [ + 2087564, + 5941101 + ], + [ + 2087574, + 5941093 + ], + [ + 2087585, + 5941086 + ], + [ + 2087594, + 5941079 + ], + [ + 2087605, + 5941072 + ], + [ + 2087615, + 5941065 + ], + [ + 2087626, + 5941058 + ], + [ + 2087635, + 5941051 + ], + [ + 2087646, + 5941043 + ], + [ + 2087657, + 5941038 + ], + [ + 2087667, + 5941030 + ], + [ + 2087677, + 5941023 + ], + [ + 2087687, + 5941017 + ], + [ + 2087697, + 5941010 + ], + [ + 2087708, + 5941002 + ], + [ + 2087718, + 5940997 + ], + [ + 2087728, + 5940989 + ], + [ + 2087739, + 5940982 + ], + [ + 2087750, + 5940977 + ], + [ + 2087759, + 5940970 + ], + [ + 2087770, + 5940963 + ], + [ + 2087782, + 5940956 + ], + [ + 2087793, + 5940949 + ], + [ + 2087802, + 5940942 + ], + [ + 2087815, + 5940935 + ], + [ + 2087825, + 5940927 + ], + [ + 2087836, + 5940920 + ], + [ + 2087846, + 5940913 + ], + [ + 2087857, + 5940906 + ], + [ + 2087867, + 5940899 + ], + [ + 2087878, + 5940892 + ], + [ + 2087888, + 5940885 + ], + [ + 2087898, + 5940878 + ], + [ + 2087908, + 5940872 + ], + [ + 2087919, + 5940864 + ], + [ + 2087928, + 5940857 + ], + [ + 2087937, + 5940850 + ], + [ + 2087948, + 5940843 + ], + [ + 2087958, + 5940835 + ], + [ + 2087968, + 5940830 + ], + [ + 2087978, + 5940822 + ], + [ + 2087989, + 5940815 + ], + [ + 2088000, + 5940809 + ], + [ + 2088010, + 5940802 + ], + [ + 2088020, + 5940795 + ], + [ + 2088033, + 5940789 + ], + [ + 2088044, + 5940782 + ], + [ + 2088053, + 5940774 + ], + [ + 2088065, + 5940768 + ], + [ + 2088076, + 5940761 + ], + [ + 2088087, + 5940754 + ], + [ + 2088097, + 5940747 + ], + [ + 2088107, + 5940740 + ], + [ + 2088118, + 5940733 + ], + [ + 2088128, + 5940726 + ], + [ + 2088138, + 5940719 + ], + [ + 2088148, + 5940712 + ], + [ + 2088159, + 5940705 + ], + [ + 2088170, + 5940698 + ], + [ + 2088179, + 5940691 + ], + [ + 2088190, + 5940683 + ], + [ + 2088200, + 5940676 + ], + [ + 2088210, + 5940668 + ], + [ + 2088220, + 5940661 + ], + [ + 2088231, + 5940653 + ], + [ + 2088241, + 5940646 + ], + [ + 2088251, + 5940639 + ], + [ + 2088261, + 5940632 + ], + [ + 2088272, + 5940625 + ], + [ + 2088282, + 5940620 + ], + [ + 2088291, + 5940613 + ], + [ + 2088302, + 5940605 + ], + [ + 2088313, + 5940600 + ], + [ + 2088323, + 5940593 + ], + [ + 2088334, + 5940586 + ], + [ + 2088345, + 5940579 + ], + [ + 2088355, + 5940572 + ], + [ + 2088366, + 5940564 + ], + [ + 2088376, + 5940557 + ], + [ + 2088386, + 5940550 + ], + [ + 2088397, + 5940543 + ], + [ + 2088407, + 5940537 + ], + [ + 2088417, + 5940529 + ], + [ + 2088427, + 5940522 + ], + [ + 2088437, + 5940515 + ], + [ + 2088448, + 5940508 + ], + [ + 2088457, + 5940500 + ], + [ + 2088468, + 5940493 + ], + [ + 2088478, + 5940485 + ], + [ + 2088489, + 5940478 + ], + [ + 2088499, + 5940471 + ], + [ + 2088510, + 5940463 + ], + [ + 2088520, + 5940456 + ], + [ + 2088532, + 5940449 + ], + [ + 2088541, + 5940443 + ], + [ + 2088552, + 5940435 + ], + [ + 2088563, + 5940430 + ], + [ + 2088573, + 5940422 + ], + [ + 2088582, + 5940415 + ], + [ + 2088593, + 5940408 + ], + [ + 2088603, + 5940401 + ], + [ + 2088614, + 5940393 + ], + [ + 2088623, + 5940387 + ], + [ + 2088634, + 5940380 + ], + [ + 2088644, + 5940372 + ], + [ + 2088655, + 5940366 + ], + [ + 2088665, + 5940358 + ], + [ + 2088675, + 5940351 + ], + [ + 2088687, + 5940344 + ], + [ + 2088696, + 5940337 + ], + [ + 2088707, + 5940329 + ], + [ + 2088718, + 5940324 + ], + [ + 2088728, + 5940316 + ], + [ + 2088738, + 5940309 + ], + [ + 2088748, + 5940303 + ], + [ + 2088758, + 5940296 + ], + [ + 2088769, + 5940289 + ], + [ + 2088779, + 5940283 + ], + [ + 2088788, + 5940276 + ], + [ + 2088799, + 5940268 + ], + [ + 2088811, + 5940264 + ], + [ + 2088821, + 5940256 + ], + [ + 2088831, + 5940249 + ], + [ + 2088843, + 5940243 + ], + [ + 2088853, + 5940236 + ], + [ + 2088864, + 5940229 + ], + [ + 2088875, + 5940222 + ], + [ + 2088886, + 5940215 + ], + [ + 2088896, + 5940207 + ], + [ + 2088907, + 5940200 + ], + [ + 2088917, + 5940192 + ], + [ + 2088927, + 5940185 + ], + [ + 2088938, + 5940177 + ], + [ + 2088947, + 5940171 + ], + [ + 2088958, + 5940163 + ], + [ + 2088968, + 5940156 + ], + [ + 2088979, + 5940148 + ], + [ + 2088988, + 5940141 + ], + [ + 2088998, + 5940135 + ], + [ + 2089009, + 5940127 + ], + [ + 2089019, + 5940120 + ], + [ + 2089028, + 5940112 + ], + [ + 2089039, + 5940105 + ], + [ + 2089049, + 5940097 + ], + [ + 2089059, + 5940091 + ], + [ + 2089068, + 5940083 + ], + [ + 2089079, + 5940076 + ], + [ + 2089089, + 5940069 + ], + [ + 2089098, + 5940061 + ], + [ + 2089109, + 5940054 + ], + [ + 2089120, + 5940047 + ], + [ + 2089131, + 5940040 + ], + [ + 2089140, + 5940032 + ], + [ + 2089151, + 5940026 + ], + [ + 2089161, + 5940018 + ], + [ + 2089172, + 5940011 + ], + [ + 2089181, + 5940003 + ], + [ + 2089192, + 5939996 + ], + [ + 2089202, + 5939989 + ], + [ + 2089213, + 5939982 + ], + [ + 2089222, + 5939974 + ], + [ + 2089233, + 5939966 + ], + [ + 2089244, + 5939960 + ], + [ + 2089253, + 5939952 + ], + [ + 2089264, + 5939945 + ], + [ + 2089274, + 5939939 + ], + [ + 2089285, + 5939932 + ], + [ + 2089294, + 5939924 + ], + [ + 2089305, + 5939919 + ], + [ + 2089315, + 5939912 + ], + [ + 2089326, + 5939904 + ], + [ + 2089337, + 5939899 + ], + [ + 2089347, + 5939891 + ], + [ + 2089357, + 5939884 + ], + [ + 2089369, + 5939877 + ], + [ + 2089379, + 5939870 + ], + [ + 2089389, + 5939862 + ], + [ + 2089400, + 5939856 + ], + [ + 2089410, + 5939848 + ], + [ + 2089420, + 5939841 + ], + [ + 2089430, + 5939836 + ], + [ + 2089441, + 5939828 + ], + [ + 2089452, + 5939821 + ], + [ + 2089461, + 5939814 + ], + [ + 2089472, + 5939807 + ], + [ + 2089483, + 5939800 + ], + [ + 2089494, + 5939794 + ], + [ + 2089503, + 5939786 + ], + [ + 2089514, + 5939779 + ], + [ + 2089524, + 5939772 + ], + [ + 2089535, + 5939766 + ], + [ + 2089544, + 5939759 + ], + [ + 2089554, + 5939752 + ], + [ + 2089565, + 5939745 + ], + [ + 2089575, + 5939738 + ], + [ + 2089588, + 5939733 + ], + [ + 2089597, + 5939725 + ], + [ + 2089608, + 5939718 + ], + [ + 2089619, + 5939710 + ], + [ + 2089630, + 5939704 + ], + [ + 2089639, + 5939696 + ], + [ + 2089651, + 5939691 + ], + [ + 2089661, + 5939683 + ], + [ + 2089672, + 5939676 + ], + [ + 2089681, + 5939670 + ], + [ + 2089692, + 5939663 + ], + [ + 2089702, + 5939656 + ], + [ + 2089714, + 5939650 + ], + [ + 2089723, + 5939643 + ], + [ + 2089734, + 5939635 + ], + [ + 2089745, + 5939628 + ], + [ + 2089754, + 5939620 + ], + [ + 2089765, + 5939613 + ], + [ + 2089775, + 5939605 + ], + [ + 2089786, + 5939598 + ], + [ + 2089796, + 5939591 + ], + [ + 2089805, + 5939586 + ], + [ + 2089816, + 5939579 + ], + [ + 2089827, + 5939571 + ], + [ + 2089838, + 5939567 + ], + [ + 2089847, + 5939559 + ], + [ + 2089858, + 5939552 + ], + [ + 2089871, + 5939546 + ], + [ + 2089881, + 5939539 + ], + [ + 2089891, + 5939531 + ], + [ + 2089902, + 5939525 + ], + [ + 2089912, + 5939517 + ], + [ + 2089923, + 5939510 + ], + [ + 2089933, + 5939504 + ], + [ + 2089943, + 5939497 + ], + [ + 2089954, + 5939491 + ], + [ + 2089965, + 5939483 + ], + [ + 2089974, + 5939476 + ], + [ + 2089985, + 5939468 + ], + [ + 2089996, + 5939461 + ], + [ + 2090005, + 5939454 + ], + [ + 2090016, + 5939447 + ], + [ + 2090025, + 5939438 + ], + [ + 2090036, + 5939431 + ], + [ + 2090046, + 5939423 + ], + [ + 2090055, + 5939417 + ], + [ + 2090066, + 5939410 + ], + [ + 2090077, + 5939402 + ], + [ + 2090086, + 5939396 + ], + [ + 2090097, + 5939388 + ], + [ + 2090108, + 5939381 + ], + [ + 2090119, + 5939375 + ], + [ + 2090129, + 5939368 + ], + [ + 2090139, + 5939360 + ], + [ + 2090150, + 5939353 + ], + [ + 2090160, + 5939345 + ], + [ + 2090170, + 5939338 + ], + [ + 2090180, + 5939332 + ], + [ + 2090190, + 5939324 + ], + [ + 2090200, + 5939317 + ], + [ + 2090210, + 5939310 + ], + [ + 2090221, + 5939303 + ], + [ + 2090231, + 5939296 + ], + [ + 2090242, + 5939290 + ], + [ + 2090252, + 5939282 + ], + [ + 2090262, + 5939275 + ], + [ + 2090273, + 5939269 + ], + [ + 2090283, + 5939262 + ], + [ + 2090293, + 5939255 + ], + [ + 2090304, + 5939248 + ], + [ + 2090314, + 5939241 + ], + [ + 2090324, + 5939233 + ], + [ + 2090335, + 5939228 + ], + [ + 2090345, + 5939220 + ], + [ + 2090356, + 5939213 + ], + [ + 2090367, + 5939207 + ], + [ + 2090376, + 5939200 + ], + [ + 2090387, + 5939193 + ], + [ + 2090399, + 5939187 + ], + [ + 2090410, + 5939180 + ], + [ + 2090419, + 5939173 + ], + [ + 2090431, + 5939168 + ], + [ + 2090442, + 5939160 + ], + [ + 2090452, + 5939153 + ], + [ + 2090462, + 5939147 + ], + [ + 2090473, + 5939140 + ], + [ + 2090483, + 5939132 + ], + [ + 2090494, + 5939126 + ], + [ + 2090504, + 5939118 + ], + [ + 2090515, + 5939111 + ], + [ + 2090526, + 5939104 + ], + [ + 2090536, + 5939097 + ], + [ + 2090546, + 5939089 + ], + [ + 2090556, + 5939082 + ], + [ + 2090567, + 5939075 + ], + [ + 2090576, + 5939067 + ], + [ + 2090587, + 5939060 + ], + [ + 2090597, + 5939052 + ], + [ + 2090608, + 5939045 + ], + [ + 2090617, + 5939036 + ], + [ + 2090627, + 5939029 + ], + [ + 2090638, + 5939021 + ], + [ + 2090647, + 5939015 + ], + [ + 2090657, + 5939008 + ], + [ + 2090667, + 5939000 + ], + [ + 2090678, + 5938994 + ], + [ + 2090687, + 5938986 + ], + [ + 2090697, + 5938978 + ], + [ + 2090708, + 5938971 + ], + [ + 2090719, + 5938964 + ], + [ + 2090728, + 5938956 + ], + [ + 2090739, + 5938950 + ], + [ + 2090749, + 5938942 + ], + [ + 2090760, + 5938935 + ], + [ + 2090769, + 5938929 + ], + [ + 2090779, + 5938921 + ], + [ + 2090789, + 5938914 + ], + [ + 2090800, + 5938907 + ], + [ + 2090809, + 5938900 + ], + [ + 2090820, + 5938892 + ], + [ + 2090831, + 5938886 + ], + [ + 2090841, + 5938878 + ], + [ + 2090851, + 5938871 + ], + [ + 2090862, + 5938866 + ], + [ + 2090873, + 5938858 + ], + [ + 2090883, + 5938851 + ], + [ + 2090893, + 5938844 + ], + [ + 2090904, + 5938838 + ], + [ + 2090915, + 5938830 + ], + [ + 2090926, + 5938825 + ], + [ + 2090936, + 5938817 + ], + [ + 2090946, + 5938810 + ], + [ + 2090957, + 5938803 + ], + [ + 2090967, + 5938796 + ], + [ + 2090977, + 5938788 + ], + [ + 2090987, + 5938782 + ], + [ + 2090998, + 5938775 + ], + [ + 2091008, + 5938767 + ], + [ + 2091018, + 5938761 + ], + [ + 2091029, + 5938753 + ], + [ + 2091039, + 5938746 + ], + [ + 2091051, + 5938739 + ], + [ + 2091060, + 5938732 + ], + [ + 2091071, + 5938725 + ], + [ + 2091082, + 5938718 + ], + [ + 2091091, + 5938710 + ], + [ + 2091102, + 5938703 + ], + [ + 2091112, + 5938698 + ], + [ + 2091123, + 5938690 + ], + [ + 2091132, + 5938683 + ], + [ + 2091142, + 5938677 + ], + [ + 2091153, + 5938670 + ], + [ + 2091163, + 5938662 + ], + [ + 2091174, + 5938655 + ], + [ + 2091184, + 5938648 + ], + [ + 2091195, + 5938641 + ], + [ + 2091206, + 5938633 + ], + [ + 2091216, + 5938627 + ], + [ + 2091226, + 5938619 + ], + [ + 2091238, + 5938613 + ], + [ + 2091248, + 5938606 + ], + [ + 2091258, + 5938598 + ], + [ + 2091269, + 5938593 + ], + [ + 2091279, + 5938585 + ], + [ + 2091290, + 5938578 + ], + [ + 2091299, + 5938571 + ], + [ + 2091310, + 5938564 + ], + [ + 2091321, + 5938557 + ], + [ + 2091331, + 5938551 + ], + [ + 2091340, + 5938543 + ], + [ + 2091351, + 5938536 + ], + [ + 2091362, + 5938530 + ], + [ + 2091373, + 5938522 + ], + [ + 2091382, + 5938515 + ], + [ + 2091393, + 5938508 + ], + [ + 2091403, + 5938501 + ], + [ + 2091414, + 5938494 + ], + [ + 2091423, + 5938487 + ], + [ + 2091434, + 5938479 + ], + [ + 2091444, + 5938473 + ], + [ + 2091455, + 5938466 + ], + [ + 2091465, + 5938459 + ], + [ + 2091475, + 5938452 + ], + [ + 2091486, + 5938445 + ], + [ + 2091497, + 5938439 + ], + [ + 2091506, + 5938431 + ], + [ + 2091517, + 5938425 + ], + [ + 2091528, + 5938417 + ], + [ + 2091538, + 5938410 + ], + [ + 2091548, + 5938404 + ], + [ + 2091559, + 5938397 + ], + [ + 2091570, + 5938390 + ], + [ + 2091580, + 5938383 + ], + [ + 2091590, + 5938375 + ], + [ + 2091601, + 5938369 + ], + [ + 2091611, + 5938362 + ], + [ + 2091621, + 5938354 + ], + [ + 2091631, + 5938348 + ], + [ + 2091641, + 5938340 + ], + [ + 2091652, + 5938333 + ], + [ + 2091663, + 5938326 + ], + [ + 2091673, + 5938319 + ], + [ + 2091683, + 5938311 + ], + [ + 2091694, + 5938304 + ], + [ + 2091705, + 5938297 + ], + [ + 2091714, + 5938290 + ], + [ + 2091725, + 5938283 + ], + [ + 2091736, + 5938277 + ], + [ + 2091746, + 5938270 + ], + [ + 2091756, + 5938262 + ], + [ + 2091767, + 5938256 + ], + [ + 2091777, + 5938248 + ], + [ + 2091788, + 5938242 + ], + [ + 2091797, + 5938235 + ], + [ + 2091808, + 5938228 + ], + [ + 2091819, + 5938220 + ], + [ + 2091830, + 5938215 + ], + [ + 2091839, + 5938207 + ], + [ + 2091850, + 5938200 + ], + [ + 2091861, + 5938194 + ], + [ + 2091871, + 5938186 + ], + [ + 2091881, + 5938179 + ], + [ + 2091891, + 5938173 + ], + [ + 2091901, + 5938166 + ], + [ + 2091911, + 5938158 + ], + [ + 2091922, + 5938154 + ], + [ + 2091932, + 5938146 + ], + [ + 2091943, + 5938139 + ], + [ + 2091954, + 5938132 + ], + [ + 2091964, + 5938125 + ], + [ + 2091975, + 5938119 + ], + [ + 2091986, + 5938111 + ], + [ + 2091997, + 5938104 + ], + [ + 2092007, + 5938097 + ], + [ + 2092017, + 5938089 + ], + [ + 2092028, + 5938081 + ], + [ + 2092038, + 5938075 + ], + [ + 2092049, + 5938067 + ], + [ + 2092060, + 5938060 + ], + [ + 2092070, + 5938053 + ], + [ + 2092079, + 5938045 + ], + [ + 2092090, + 5938037 + ], + [ + 2092101, + 5938031 + ], + [ + 2092110, + 5938023 + ], + [ + 2092120, + 5938016 + ], + [ + 2092131, + 5938009 + ], + [ + 2092140, + 5938001 + ], + [ + 2092151, + 5937994 + ], + [ + 2092160, + 5937986 + ], + [ + 2092171, + 5937979 + ], + [ + 2092181, + 5937971 + ], + [ + 2092191, + 5937964 + ], + [ + 2092202, + 5937957 + ], + [ + 2092212, + 5937950 + ], + [ + 2092223, + 5937943 + ], + [ + 2092232, + 5937937 + ], + [ + 2092242, + 5937930 + ], + [ + 2092253, + 5937922 + ], + [ + 2092263, + 5937917 + ], + [ + 2092273, + 5937909 + ], + [ + 2092283, + 5937902 + ], + [ + 2092294, + 5937896 + ], + [ + 2092305, + 5937890 + ], + [ + 2092314, + 5937883 + ], + [ + 2092327, + 5937877 + ], + [ + 2092337, + 5937871 + ], + [ + 2092348, + 5937863 + ], + [ + 2092361, + 5937858 + ], + [ + 2092370, + 5937851 + ], + [ + 2092381, + 5937844 + ], + [ + 2092392, + 5937837 + ], + [ + 2092403, + 5937830 + ], + [ + 2092413, + 5937823 + ], + [ + 2092423, + 5937816 + ], + [ + 2092434, + 5937809 + ], + [ + 2092445, + 5937803 + ], + [ + 2092454, + 5937794 + ], + [ + 2092465, + 5937788 + ], + [ + 2092475, + 5937781 + ], + [ + 2092486, + 5937774 + ], + [ + 2092496, + 5937767 + ], + [ + 2092506, + 5937760 + ], + [ + 2092517, + 5937754 + ], + [ + 2092527, + 5937746 + ], + [ + 2092537, + 5937740 + ], + [ + 2092548, + 5937733 + ], + [ + 2092559, + 5937726 + ], + [ + 2092569, + 5937718 + ], + [ + 2092579, + 5937712 + ], + [ + 2092589, + 5937704 + ], + [ + 2092600, + 5937697 + ], + [ + 2092609, + 5937690 + ], + [ + 2092619, + 5937683 + ], + [ + 2092630, + 5937676 + ], + [ + 2092639, + 5937667 + ], + [ + 2092649, + 5937661 + ], + [ + 2092660, + 5937653 + ], + [ + 2092670, + 5937646 + ], + [ + 2092681, + 5937638 + ], + [ + 2092691, + 5937632 + ], + [ + 2092701, + 5937625 + ], + [ + 2092712, + 5937617 + ], + [ + 2092723, + 5937611 + ], + [ + 2092732, + 5937603 + ], + [ + 2092743, + 5937596 + ], + [ + 2092754, + 5937589 + ], + [ + 2092763, + 5937581 + ], + [ + 2092773, + 5937573 + ], + [ + 2092784, + 5937567 + ], + [ + 2092793, + 5937559 + ], + [ + 2092804, + 5937553 + ], + [ + 2092813, + 5937546 + ], + [ + 2092823, + 5937538 + ], + [ + 2092833, + 5937531 + ], + [ + 2092844, + 5937524 + ], + [ + 2092854, + 5937518 + ], + [ + 2092865, + 5937510 + ], + [ + 2092875, + 5937503 + ], + [ + 2092886, + 5937497 + ], + [ + 2092896, + 5937490 + ], + [ + 2092906, + 5937483 + ], + [ + 2092918, + 5937477 + ], + [ + 2092929, + 5937471 + ], + [ + 2092938, + 5937463 + ], + [ + 2092950, + 5937457 + ], + [ + 2092961, + 5937449 + ], + [ + 2092972, + 5937443 + ], + [ + 2092983, + 5937434 + ], + [ + 2092993, + 5937428 + ], + [ + 2093004, + 5937420 + ], + [ + 2093015, + 5937414 + ], + [ + 2093024, + 5937406 + ], + [ + 2093035, + 5937400 + ], + [ + 2093045, + 5937393 + ], + [ + 2093056, + 5937386 + ], + [ + 2093066, + 5937379 + ], + [ + 2093076, + 5937372 + ], + [ + 2093086, + 5937366 + ], + [ + 2093097, + 5937358 + ], + [ + 2093107, + 5937352 + ], + [ + 2093117, + 5937344 + ], + [ + 2093128, + 5937338 + ], + [ + 2093137, + 5937329 + ], + [ + 2093148, + 5937323 + ], + [ + 2093158, + 5937315 + ], + [ + 2093168, + 5937308 + ], + [ + 2093178, + 5937302 + ], + [ + 2093189, + 5937294 + ], + [ + 2093199, + 5937287 + ], + [ + 2093209, + 5937280 + ], + [ + 2093219, + 5937273 + ], + [ + 2093230, + 5937265 + ], + [ + 2093241, + 5937259 + ], + [ + 2093251, + 5937251 + ], + [ + 2093261, + 5937245 + ], + [ + 2093272, + 5937237 + ], + [ + 2093282, + 5937230 + ], + [ + 2093292, + 5937224 + ], + [ + 2093302, + 5937217 + ], + [ + 2093313, + 5937210 + ], + [ + 2093323, + 5937204 + ], + [ + 2093334, + 5937197 + ], + [ + 2093343, + 5937189 + ], + [ + 2093353, + 5937184 + ], + [ + 2093363, + 5937177 + ], + [ + 2093374, + 5937170 + ], + [ + 2093385, + 5937163 + ], + [ + 2093396, + 5937156 + ], + [ + 2093407, + 5937148 + ], + [ + 2093420, + 5937141 + ], + [ + 2093430, + 5937133 + ], + [ + 2093440, + 5937127 + ], + [ + 2093452, + 5937119 + ], + [ + 2093463, + 5937112 + ], + [ + 2093472, + 5937106 + ], + [ + 2093483, + 5937099 + ], + [ + 2093494, + 5937093 + ], + [ + 2093505, + 5937085 + ], + [ + 2093514, + 5937078 + ], + [ + 2093525, + 5937071 + ], + [ + 2093535, + 5937064 + ], + [ + 2093545, + 5937057 + ], + [ + 2093554, + 5937051 + ], + [ + 2093565, + 5937043 + ], + [ + 2093575, + 5937036 + ], + [ + 2093585, + 5937030 + ], + [ + 2093595, + 5937022 + ], + [ + 2093605, + 5937015 + ], + [ + 2093616, + 5937008 + ], + [ + 2093627, + 5937001 + ], + [ + 2093636, + 5936994 + ], + [ + 2093646, + 5936987 + ], + [ + 2093657, + 5936979 + ], + [ + 2093667, + 5936973 + ], + [ + 2093676, + 5936966 + ], + [ + 2093687, + 5936958 + ], + [ + 2093698, + 5936951 + ], + [ + 2093708, + 5936944 + ], + [ + 2093718, + 5936937 + ], + [ + 2093729, + 5936929 + ], + [ + 2093740, + 5936922 + ], + [ + 2093749, + 5936915 + ], + [ + 2093759, + 5936907 + ], + [ + 2093770, + 5936899 + ], + [ + 2093781, + 5936893 + ], + [ + 2093789, + 5936886 + ], + [ + 2093800, + 5936878 + ], + [ + 2093811, + 5936872 + ], + [ + 2093821, + 5936863 + ], + [ + 2093831, + 5936856 + ], + [ + 2093841, + 5936849 + ], + [ + 2093852, + 5936841 + ], + [ + 2093862, + 5936834 + ], + [ + 2093872, + 5936827 + ], + [ + 2093882, + 5936820 + ], + [ + 2093893, + 5936813 + ], + [ + 2093903, + 5936806 + ], + [ + 2093913, + 5936800 + ], + [ + 2093924, + 5936794 + ], + [ + 2093935, + 5936786 + ], + [ + 2093946, + 5936781 + ], + [ + 2093956, + 5936774 + ], + [ + 2093967, + 5936767 + ], + [ + 2093978, + 5936760 + ], + [ + 2093989, + 5936754 + ], + [ + 2093998, + 5936746 + ], + [ + 2094009, + 5936741 + ], + [ + 2094020, + 5936733 + ], + [ + 2094030, + 5936727 + ], + [ + 2094041, + 5936720 + ], + [ + 2094051, + 5936713 + ], + [ + 2094062, + 5936707 + ], + [ + 2094074, + 5936699 + ], + [ + 2094083, + 5936693 + ], + [ + 2094094, + 5936686 + ], + [ + 2094104, + 5936678 + ], + [ + 2094115, + 5936671 + ], + [ + 2094125, + 5936665 + ], + [ + 2094134, + 5936657 + ], + [ + 2094145, + 5936650 + ], + [ + 2094156, + 5936643 + ], + [ + 2094165, + 5936636 + ], + [ + 2094175, + 5936629 + ], + [ + 2094186, + 5936622 + ], + [ + 2094196, + 5936615 + ], + [ + 2094206, + 5936608 + ], + [ + 2094217, + 5936601 + ], + [ + 2094229, + 5936594 + ], + [ + 2094239, + 5936587 + ], + [ + 2094249, + 5936580 + ], + [ + 2094260, + 5936573 + ], + [ + 2094271, + 5936566 + ], + [ + 2094281, + 5936559 + ], + [ + 2094291, + 5936551 + ], + [ + 2094302, + 5936545 + ], + [ + 2094312, + 5936538 + ], + [ + 2094323, + 5936531 + ], + [ + 2094333, + 5936525 + ], + [ + 2094343, + 5936517 + ], + [ + 2094354, + 5936511 + ], + [ + 2094365, + 5936503 + ], + [ + 2094375, + 5936497 + ], + [ + 2094385, + 5936489 + ], + [ + 2094396, + 5936483 + ], + [ + 2094406, + 5936475 + ], + [ + 2094415, + 5936468 + ], + [ + 2094426, + 5936461 + ], + [ + 2094437, + 5936454 + ], + [ + 2094447, + 5936447 + ], + [ + 2094457, + 5936440 + ], + [ + 2094468, + 5936433 + ], + [ + 2094479, + 5936427 + ], + [ + 2094490, + 5936420 + ], + [ + 2094499, + 5936413 + ], + [ + 2094510, + 5936407 + ], + [ + 2094521, + 5936399 + ], + [ + 2094531, + 5936393 + ], + [ + 2094542, + 5936385 + ], + [ + 2094552, + 5936379 + ], + [ + 2094563, + 5936372 + ], + [ + 2094574, + 5936364 + ], + [ + 2094584, + 5936358 + ], + [ + 2094595, + 5936350 + ], + [ + 2094605, + 5936344 + ], + [ + 2094616, + 5936336 + ], + [ + 2094625, + 5936330 + ], + [ + 2094635, + 5936322 + ], + [ + 2094646, + 5936316 + ], + [ + 2094657, + 5936308 + ], + [ + 2094665, + 5936301 + ], + [ + 2094676, + 5936295 + ], + [ + 2094687, + 5936287 + ], + [ + 2094695, + 5936281 + ], + [ + 2094705, + 5936273 + ], + [ + 2094716, + 5936267 + ], + [ + 2094727, + 5936260 + ], + [ + 2094738, + 5936253 + ], + [ + 2094748, + 5936246 + ], + [ + 2094759, + 5936239 + ], + [ + 2094769, + 5936231 + ], + [ + 2094780, + 5936225 + ], + [ + 2094791, + 5936218 + ], + [ + 2094802, + 5936211 + ], + [ + 2094813, + 5936204 + ], + [ + 2094823, + 5936197 + ], + [ + 2094833, + 5936191 + ], + [ + 2094843, + 5936183 + ], + [ + 2094854, + 5936178 + ], + [ + 2094864, + 5936170 + ], + [ + 2094874, + 5936164 + ], + [ + 2094885, + 5936155 + ], + [ + 2094896, + 5936149 + ], + [ + 2094905, + 5936141 + ], + [ + 2094916, + 5936134 + ], + [ + 2094927, + 5936126 + ], + [ + 2094938, + 5936120 + ], + [ + 2094948, + 5936113 + ], + [ + 2094958, + 5936105 + ], + [ + 2094969, + 5936099 + ], + [ + 2094980, + 5936091 + ], + [ + 2094990, + 5936085 + ], + [ + 2095000, + 5936077 + ], + [ + 2095011, + 5936072 + ], + [ + 2095022, + 5936064 + ], + [ + 2095031, + 5936058 + ], + [ + 2095041, + 5936050 + ], + [ + 2095052, + 5936043 + ], + [ + 2095063, + 5936037 + ], + [ + 2095072, + 5936030 + ], + [ + 2095082, + 5936023 + ], + [ + 2095093, + 5936016 + ], + [ + 2095103, + 5936009 + ], + [ + 2095113, + 5936001 + ], + [ + 2095124, + 5935995 + ], + [ + 2095134, + 5935987 + ], + [ + 2095145, + 5935980 + ], + [ + 2095155, + 5935973 + ], + [ + 2095165, + 5935965 + ], + [ + 2095176, + 5935958 + ], + [ + 2095187, + 5935950 + ], + [ + 2095196, + 5935943 + ], + [ + 2095206, + 5935935 + ], + [ + 2095217, + 5935928 + ], + [ + 2095227, + 5935922 + ], + [ + 2095236, + 5935915 + ], + [ + 2095247, + 5935907 + ], + [ + 2095257, + 5935901 + ], + [ + 2095267, + 5935893 + ], + [ + 2095277, + 5935886 + ], + [ + 2095289, + 5935881 + ], + [ + 2095299, + 5935874 + ], + [ + 2095310, + 5935867 + ], + [ + 2095321, + 5935860 + ], + [ + 2095331, + 5935853 + ], + [ + 2095342, + 5935846 + ], + [ + 2095352, + 5935840 + ], + [ + 2095362, + 5935832 + ], + [ + 2095373, + 5935826 + ], + [ + 2095384, + 5935818 + ], + [ + 2095395, + 5935812 + ], + [ + 2095404, + 5935804 + ], + [ + 2095415, + 5935797 + ], + [ + 2095426, + 5935790 + ], + [ + 2095437, + 5935783 + ], + [ + 2095446, + 5935776 + ], + [ + 2095456, + 5935769 + ], + [ + 2095467, + 5935762 + ], + [ + 2095476, + 5935754 + ], + [ + 2095487, + 5935747 + ], + [ + 2095497, + 5935740 + ], + [ + 2095508, + 5935733 + ], + [ + 2095518, + 5935726 + ], + [ + 2095528, + 5935719 + ], + [ + 2095539, + 5935712 + ], + [ + 2095549, + 5935705 + ], + [ + 2095559, + 5935698 + ], + [ + 2095570, + 5935690 + ], + [ + 2095580, + 5935683 + ], + [ + 2095591, + 5935676 + ], + [ + 2095599, + 5935669 + ], + [ + 2095610, + 5935661 + ], + [ + 2095621, + 5935654 + ], + [ + 2095631, + 5935647 + ], + [ + 2095640, + 5935640 + ], + [ + 2095651, + 5935634 + ], + [ + 2095662, + 5935626 + ], + [ + 2095672, + 5935619 + ], + [ + 2095682, + 5935611 + ], + [ + 2095693, + 5935605 + ], + [ + 2095703, + 5935597 + ], + [ + 2095713, + 5935590 + ], + [ + 2095723, + 5935582 + ], + [ + 2095734, + 5935576 + ], + [ + 2095744, + 5935568 + ], + [ + 2095754, + 5935562 + ], + [ + 2095764, + 5935555 + ], + [ + 2095775, + 5935547 + ], + [ + 2095785, + 5935542 + ], + [ + 2095795, + 5935534 + ], + [ + 2095806, + 5935527 + ], + [ + 2095817, + 5935521 + ], + [ + 2095828, + 5935515 + ], + [ + 2095838, + 5935507 + ], + [ + 2095848, + 5935501 + ], + [ + 2095859, + 5935493 + ], + [ + 2095869, + 5935487 + ], + [ + 2095881, + 5935479 + ], + [ + 2095890, + 5935473 + ], + [ + 2095901, + 5935466 + ], + [ + 2095912, + 5935458 + ], + [ + 2095923, + 5935452 + ], + [ + 2095933, + 5935444 + ], + [ + 2095944, + 5935438 + ], + [ + 2095955, + 5935431 + ], + [ + 2095964, + 5935424 + ], + [ + 2095975, + 5935418 + ], + [ + 2095985, + 5935411 + ], + [ + 2095996, + 5935404 + ], + [ + 2096006, + 5935398 + ], + [ + 2096016, + 5935390 + ], + [ + 2096027, + 5935384 + ], + [ + 2096038, + 5935378 + ], + [ + 2096049, + 5935370 + ], + [ + 2096059, + 5935364 + ], + [ + 2096069, + 5935355 + ], + [ + 2096080, + 5935348 + ], + [ + 2096091, + 5935341 + ], + [ + 2096100, + 5935332 + ], + [ + 2096111, + 5935325 + ], + [ + 2096121, + 5935318 + ], + [ + 2096130, + 5935309 + ], + [ + 2096141, + 5935303 + ], + [ + 2096151, + 5935296 + ], + [ + 2096162, + 5935287 + ], + [ + 2096171, + 5935281 + ], + [ + 2096182, + 5935273 + ], + [ + 2096193, + 5935266 + ], + [ + 2096202, + 5935258 + ], + [ + 2096213, + 5935251 + ], + [ + 2096223, + 5935245 + ], + [ + 2096234, + 5935238 + ], + [ + 2096243, + 5935230 + ], + [ + 2096255, + 5935224 + ], + [ + 2096265, + 5935216 + ], + [ + 2096276, + 5935209 + ], + [ + 2096286, + 5935204 + ], + [ + 2096296, + 5935196 + ], + [ + 2096306, + 5935189 + ], + [ + 2096317, + 5935183 + ], + [ + 2096327, + 5935176 + ], + [ + 2096337, + 5935168 + ], + [ + 2096348, + 5935163 + ], + [ + 2096358, + 5935155 + ], + [ + 2096368, + 5935148 + ], + [ + 2096378, + 5935142 + ], + [ + 2096389, + 5935135 + ], + [ + 2096400, + 5935128 + ], + [ + 2096410, + 5935122 + ], + [ + 2096420, + 5935115 + ], + [ + 2096430, + 5935108 + ], + [ + 2096441, + 5935102 + ], + [ + 2096452, + 5935094 + ], + [ + 2096462, + 5935088 + ], + [ + 2096473, + 5935080 + ], + [ + 2096484, + 5935074 + ], + [ + 2096495, + 5935066 + ], + [ + 2096505, + 5935060 + ], + [ + 2096516, + 5935052 + ], + [ + 2096526, + 5935046 + ], + [ + 2096536, + 5935039 + ], + [ + 2096546, + 5935032 + ], + [ + 2096557, + 5935025 + ], + [ + 2096568, + 5935018 + ], + [ + 2096578, + 5935012 + ], + [ + 2096588, + 5935004 + ], + [ + 2096598, + 5934998 + ], + [ + 2096609, + 5934990 + ], + [ + 2096620, + 5934984 + ], + [ + 2096629, + 5934977 + ], + [ + 2096640, + 5934970 + ], + [ + 2096651, + 5934963 + ], + [ + 2096660, + 5934955 + ], + [ + 2096670, + 5934948 + ], + [ + 2096680, + 5934941 + ], + [ + 2096691, + 5934934 + ], + [ + 2096701, + 5934926 + ], + [ + 2096711, + 5934919 + ], + [ + 2096722, + 5934911 + ], + [ + 2096732, + 5934904 + ], + [ + 2096742, + 5934896 + ], + [ + 2096752, + 5934890 + ], + [ + 2096763, + 5934883 + ], + [ + 2096774, + 5934875 + ], + [ + 2096784, + 5934870 + ], + [ + 2096795, + 5934863 + ], + [ + 2096805, + 5934856 + ], + [ + 2096817, + 5934850 + ], + [ + 2096827, + 5934843 + ], + [ + 2096837, + 5934835 + ], + [ + 2096849, + 5934829 + ], + [ + 2096859, + 5934821 + ], + [ + 2096869, + 5934815 + ], + [ + 2096880, + 5934807 + ], + [ + 2096891, + 5934800 + ], + [ + 2096901, + 5934793 + ], + [ + 2096912, + 5934786 + ], + [ + 2096922, + 5934779 + ], + [ + 2096933, + 5934772 + ], + [ + 2096944, + 5934764 + ], + [ + 2096954, + 5934757 + ], + [ + 2096964, + 5934750 + ], + [ + 2096976, + 5934742 + ], + [ + 2096986, + 5934736 + ], + [ + 2096996, + 5934728 + ], + [ + 2097007, + 5934722 + ], + [ + 2097018, + 5934714 + ], + [ + 2097029, + 5934707 + ], + [ + 2097039, + 5934700 + ], + [ + 2097050, + 5934693 + ], + [ + 2097060, + 5934686 + ], + [ + 2097071, + 5934680 + ], + [ + 2097081, + 5934674 + ], + [ + 2097091, + 5934666 + ], + [ + 2097101, + 5934660 + ], + [ + 2097112, + 5934653 + ], + [ + 2097121, + 5934646 + ], + [ + 2097131, + 5934641 + ], + [ + 2097142, + 5934634 + ], + [ + 2097152, + 5934626 + ], + [ + 2097162, + 5934621 + ], + [ + 2097172, + 5934614 + ], + [ + 2097183, + 5934606 + ], + [ + 2097194, + 5934601 + ], + [ + 2097203, + 5934593 + ], + [ + 2097214, + 5934586 + ], + [ + 2097225, + 5934579 + ], + [ + 2097236, + 5934572 + ], + [ + 2097245, + 5934564 + ], + [ + 2097256, + 5934557 + ], + [ + 2097266, + 5934550 + ], + [ + 2097277, + 5934543 + ], + [ + 2097286, + 5934535 + ], + [ + 2097297, + 5934529 + ], + [ + 2097307, + 5934522 + ], + [ + 2097318, + 5934514 + ], + [ + 2097327, + 5934507 + ], + [ + 2097338, + 5934499 + ], + [ + 2097349, + 5934493 + ], + [ + 2097360, + 5934486 + ], + [ + 2097369, + 5934479 + ], + [ + 2097381, + 5934471 + ], + [ + 2097391, + 5934465 + ], + [ + 2097402, + 5934457 + ], + [ + 2097412, + 5934451 + ], + [ + 2097423, + 5934443 + ], + [ + 2097433, + 5934436 + ], + [ + 2097444, + 5934429 + ], + [ + 2097454, + 5934421 + ], + [ + 2097464, + 5934414 + ], + [ + 2097475, + 5934406 + ], + [ + 2097485, + 5934400 + ], + [ + 2097495, + 5934392 + ], + [ + 2097506, + 5934385 + ], + [ + 2097516, + 5934377 + ], + [ + 2097526, + 5934370 + ], + [ + 2097536, + 5934363 + ], + [ + 2097547, + 5934357 + ], + [ + 2097557, + 5934350 + ], + [ + 2097567, + 5934344 + ], + [ + 2097578, + 5934337 + ], + [ + 2097588, + 5934329 + ], + [ + 2097599, + 5934325 + ], + [ + 2097609, + 5934317 + ], + [ + 2097619, + 5934311 + ], + [ + 2097630, + 5934305 + ], + [ + 2097641, + 5934298 + ], + [ + 2097651, + 5934290 + ], + [ + 2097661, + 5934285 + ], + [ + 2097672, + 5934279 + ], + [ + 2097682, + 5934271 + ], + [ + 2097693, + 5934265 + ], + [ + 2097702, + 5934257 + ], + [ + 2097713, + 5934250 + ], + [ + 2097723, + 5934244 + ], + [ + 2097734, + 5934237 + ], + [ + 2097743, + 5934229 + ], + [ + 2097754, + 5934224 + ], + [ + 2097764, + 5934216 + ], + [ + 2097775, + 5934209 + ], + [ + 2097785, + 5934204 + ], + [ + 2097795, + 5934196 + ], + [ + 2097806, + 5934189 + ], + [ + 2097818, + 5934182 + ], + [ + 2097827, + 5934175 + ], + [ + 2097838, + 5934167 + ], + [ + 2097850, + 5934161 + ], + [ + 2097860, + 5934153 + ], + [ + 2097870, + 5934146 + ], + [ + 2097881, + 5934139 + ], + [ + 2097891, + 5934132 + ], + [ + 2097902, + 5934124 + ], + [ + 2097912, + 5934118 + ], + [ + 2097923, + 5934110 + ], + [ + 2097933, + 5934103 + ], + [ + 2097943, + 5934096 + ], + [ + 2097954, + 5934088 + ], + [ + 2097964, + 5934081 + ], + [ + 2097975, + 5934073 + ], + [ + 2097985, + 5934066 + ], + [ + 2097995, + 5934058 + ], + [ + 2098006, + 5934051 + ], + [ + 2098017, + 5934043 + ], + [ + 2098026, + 5934036 + ], + [ + 2098038, + 5934029 + ], + [ + 2098048, + 5934022 + ], + [ + 2098059, + 5934014 + ], + [ + 2098070, + 5934008 + ], + [ + 2098081, + 5934000 + ], + [ + 2098091, + 5933993 + ], + [ + 2098103, + 5933987 + ], + [ + 2098112, + 5933979 + ], + [ + 2098123, + 5933972 + ], + [ + 2098134, + 5933965 + ], + [ + 2098144, + 5933958 + ], + [ + 2098154, + 5933950 + ], + [ + 2098166, + 5933944 + ], + [ + 2098177, + 5933936 + ], + [ + 2098186, + 5933929 + ], + [ + 2098197, + 5933922 + ], + [ + 2098208, + 5933915 + ], + [ + 2098218, + 5933907 + ], + [ + 2098229, + 5933902 + ], + [ + 2098239, + 5933894 + ], + [ + 2098250, + 5933887 + ], + [ + 2098262, + 5933880 + ], + [ + 2098271, + 5933873 + ], + [ + 2098282, + 5933866 + ], + [ + 2098293, + 5933859 + ], + [ + 2098304, + 5933852 + ], + [ + 2098313, + 5933844 + ], + [ + 2098324, + 5933839 + ], + [ + 2098335, + 5933831 + ], + [ + 2098345, + 5933824 + ], + [ + 2098355, + 5933818 + ], + [ + 2098366, + 5933811 + ], + [ + 2098376, + 5933803 + ], + [ + 2098387, + 5933797 + ], + [ + 2098397, + 5933790 + ], + [ + 2098407, + 5933782 + ], + [ + 2098417, + 5933777 + ], + [ + 2098428, + 5933769 + ], + [ + 2098437, + 5933762 + ], + [ + 2098447, + 5933755 + ], + [ + 2098458, + 5933748 + ], + [ + 2098468, + 5933740 + ], + [ + 2098478, + 5933734 + ], + [ + 2098488, + 5933727 + ], + [ + 2098498, + 5933719 + ], + [ + 2098509, + 5933713 + ], + [ + 2098518, + 5933705 + ], + [ + 2098529, + 5933698 + ], + [ + 2098539, + 5933691 + ], + [ + 2098550, + 5933684 + ], + [ + 2098559, + 5933675 + ], + [ + 2098570, + 5933670 + ], + [ + 2098580, + 5933661 + ], + [ + 2098589, + 5933654 + ], + [ + 2098600, + 5933649 + ], + [ + 2098610, + 5933641 + ], + [ + 2098620, + 5933634 + ], + [ + 2098631, + 5933629 + ], + [ + 2098641, + 5933622 + ], + [ + 2098651, + 5933614 + ], + [ + 2098662, + 5933609 + ], + [ + 2098673, + 5933601 + ], + [ + 2098682, + 5933594 + ], + [ + 2098694, + 5933588 + ], + [ + 2098704, + 5933581 + ], + [ + 2098715, + 5933574 + ], + [ + 2098725, + 5933568 + ], + [ + 2098736, + 5933561 + ], + [ + 2098746, + 5933553 + ], + [ + 2098757, + 5933548 + ], + [ + 2098767, + 5933540 + ], + [ + 2098777, + 5933533 + ], + [ + 2098788, + 5933527 + ], + [ + 2098798, + 5933520 + ], + [ + 2098808, + 5933512 + ], + [ + 2098818, + 5933508 + ], + [ + 2098828, + 5933501 + ], + [ + 2098839, + 5933493 + ], + [ + 2098849, + 5933488 + ], + [ + 2098858, + 5933481 + ], + [ + 2098869, + 5933474 + ], + [ + 2098879, + 5933467 + ], + [ + 2098889, + 5933460 + ], + [ + 2098899, + 5933452 + ], + [ + 2098909, + 5933447 + ], + [ + 2098920, + 5933439 + ], + [ + 2098929, + 5933432 + ], + [ + 2098939, + 5933426 + ], + [ + 2098950, + 5933418 + ], + [ + 2098960, + 5933411 + ], + [ + 2098970, + 5933403 + ], + [ + 2098981, + 5933396 + ], + [ + 2098991, + 5933388 + ], + [ + 2099002, + 5933381 + ], + [ + 2099011, + 5933373 + ], + [ + 2099021, + 5933366 + ], + [ + 2099031, + 5933361 + ], + [ + 2099042, + 5933353 + ], + [ + 2099051, + 5933345 + ], + [ + 2099062, + 5933340 + ], + [ + 2099072, + 5933332 + ], + [ + 2099082, + 5933324 + ], + [ + 2099093, + 5933320 + ], + [ + 2099103, + 5933312 + ], + [ + 2099113, + 5933304 + ], + [ + 2099125, + 5933299 + ], + [ + 2099134, + 5933291 + ], + [ + 2099144, + 5933284 + ], + [ + 2099158, + 5933278 + ], + [ + 2099168, + 5933271 + ], + [ + 2099177, + 5933263 + ], + [ + 2099190, + 5933257 + ], + [ + 2099201, + 5933249 + ], + [ + 2099211, + 5933242 + ], + [ + 2099222, + 5933236 + ], + [ + 2099232, + 5933229 + ], + [ + 2099243, + 5933221 + ], + [ + 2099254, + 5933216 + ], + [ + 2099263, + 5933208 + ], + [ + 2099273, + 5933201 + ], + [ + 2099284, + 5933194 + ], + [ + 2099295, + 5933187 + ], + [ + 2099304, + 5933180 + ], + [ + 2099315, + 5933173 + ], + [ + 2099325, + 5933166 + ], + [ + 2099336, + 5933158 + ], + [ + 2099345, + 5933151 + ], + [ + 2099355, + 5933143 + ], + [ + 2099366, + 5933136 + ], + [ + 2099375, + 5933128 + ], + [ + 2099386, + 5933121 + ], + [ + 2099396, + 5933113 + ], + [ + 2099407, + 5933106 + ], + [ + 2099416, + 5933099 + ], + [ + 2099427, + 5933091 + ], + [ + 2099438, + 5933086 + ], + [ + 2099449, + 5933077 + ], + [ + 2099458, + 5933070 + ], + [ + 2099470, + 5933063 + ], + [ + 2099480, + 5933056 + ], + [ + 2099491, + 5933048 + ], + [ + 2099502, + 5933042 + ], + [ + 2099512, + 5933034 + ], + [ + 2099523, + 5933027 + ], + [ + 2099535, + 5933020 + ], + [ + 2099544, + 5933012 + ], + [ + 2099555, + 5933004 + ], + [ + 2099567, + 5932998 + ], + [ + 2099577, + 5932990 + ], + [ + 2099586, + 5932983 + ], + [ + 2099598, + 5932977 + ], + [ + 2099608, + 5932969 + ], + [ + 2099618, + 5932962 + ], + [ + 2099629, + 5932955 + ], + [ + 2099639, + 5932948 + ], + [ + 2099650, + 5932940 + ], + [ + 2099661, + 5932935 + ], + [ + 2099671, + 5932927 + ], + [ + 2099682, + 5932920 + ], + [ + 2099692, + 5932914 + ], + [ + 2099701, + 5932907 + ], + [ + 2099712, + 5932900 + ], + [ + 2099723, + 5932895 + ], + [ + 2099733, + 5932888 + ], + [ + 2099744, + 5932880 + ], + [ + 2099753, + 5932875 + ], + [ + 2099763, + 5932867 + ], + [ + 2099774, + 5932859 + ], + [ + 2099784, + 5932853 + ], + [ + 2099794, + 5932845 + ], + [ + 2099804, + 5932837 + ], + [ + 2099815, + 5932831 + ], + [ + 2099824, + 5932823 + ], + [ + 2099835, + 5932815 + ], + [ + 2099846, + 5932810 + ], + [ + 2099856, + 5932802 + ], + [ + 2099866, + 5932795 + ], + [ + 2099877, + 5932789 + ], + [ + 2099887, + 5932782 + ], + [ + 2099898, + 5932774 + ], + [ + 2099909, + 5932770 + ], + [ + 2099918, + 5932761 + ], + [ + 2099929, + 5932754 + ], + [ + 2099940, + 5932748 + ], + [ + 2099949, + 5932741 + ], + [ + 2099959, + 5932734 + ], + [ + 2099970, + 5932728 + ], + [ + 2099980, + 5932721 + ], + [ + 2099990, + 5932713 + ], + [ + 2100001, + 5932709 + ], + [ + 2100011, + 5932701 + ], + [ + 2100022, + 5932694 + ], + [ + 2100032, + 5932689 + ], + [ + 2100041, + 5932682 + ], + [ + 2100052, + 5932675 + ], + [ + 2100063, + 5932670 + ], + [ + 2100073, + 5932663 + ], + [ + 2100082, + 5932655 + ], + [ + 2100093, + 5932650 + ], + [ + 2100104, + 5932642 + ], + [ + 2100114, + 5932635 + ], + [ + 2100125, + 5932627 + ], + [ + 2100136, + 5932620 + ], + [ + 2100146, + 5932612 + ], + [ + 2100157, + 5932606 + ], + [ + 2100167, + 5932598 + ], + [ + 2100177, + 5932591 + ], + [ + 2100188, + 5932585 + ], + [ + 2100199, + 5932577 + ], + [ + 2100208, + 5932570 + ], + [ + 2100219, + 5932563 + ], + [ + 2100230, + 5932556 + ], + [ + 2100240, + 5932548 + ], + [ + 2100250, + 5932542 + ], + [ + 2100260, + 5932534 + ], + [ + 2100271, + 5932527 + ], + [ + 2100281, + 5932520 + ], + [ + 2100290, + 5932513 + ], + [ + 2100301, + 5932506 + ], + [ + 2100311, + 5932500 + ], + [ + 2100322, + 5932493 + ], + [ + 2100331, + 5932485 + ], + [ + 2100343, + 5932481 + ], + [ + 2100353, + 5932473 + ], + [ + 2100363, + 5932466 + ], + [ + 2100374, + 5932460 + ], + [ + 2100385, + 5932452 + ], + [ + 2100395, + 5932444 + ], + [ + 2100407, + 5932439 + ], + [ + 2100416, + 5932431 + ], + [ + 2100427, + 5932424 + ], + [ + 2100438, + 5932418 + ], + [ + 2100448, + 5932410 + ], + [ + 2100458, + 5932403 + ], + [ + 2100468, + 5932396 + ], + [ + 2100479, + 5932389 + ], + [ + 2100489, + 5932381 + ], + [ + 2100499, + 5932375 + ], + [ + 2100509, + 5932367 + ], + [ + 2100520, + 5932360 + ], + [ + 2100530, + 5932354 + ], + [ + 2100540, + 5932347 + ], + [ + 2100550, + 5932339 + ], + [ + 2100562, + 5932333 + ], + [ + 2100571, + 5932326 + ], + [ + 2100581, + 5932318 + ], + [ + 2100593, + 5932313 + ], + [ + 2100604, + 5932305 + ], + [ + 2100613, + 5932298 + ], + [ + 2100624, + 5932292 + ], + [ + 2100634, + 5932284 + ], + [ + 2100644, + 5932276 + ], + [ + 2100655, + 5932271 + ], + [ + 2100664, + 5932264 + ], + [ + 2100675, + 5932255 + ], + [ + 2100686, + 5932250 + ], + [ + 2100695, + 5932242 + ], + [ + 2100706, + 5932235 + ], + [ + 2100718, + 5932229 + ], + [ + 2100728, + 5932221 + ], + [ + 2100737, + 5932213 + ], + [ + 2100749, + 5932207 + ], + [ + 2100759, + 5932199 + ], + [ + 2100770, + 5932192 + ], + [ + 2100780, + 5932186 + ], + [ + 2100790, + 5932178 + ], + [ + 2100801, + 5932170 + ], + [ + 2100811, + 5932164 + ], + [ + 2100821, + 5932157 + ], + [ + 2100831, + 5932149 + ], + [ + 2100841, + 5932145 + ], + [ + 2100851, + 5932136 + ], + [ + 2100861, + 5932129 + ], + [ + 2100872, + 5932124 + ], + [ + 2100882, + 5932117 + ], + [ + 2100892, + 5932109 + ], + [ + 2100904, + 5932104 + ], + [ + 2100914, + 5932095 + ], + [ + 2100925, + 5932088 + ], + [ + 2100937, + 5932083 + ], + [ + 2100947, + 5932075 + ], + [ + 2100957, + 5932068 + ], + [ + 2100969, + 5932062 + ], + [ + 2100979, + 5932055 + ], + [ + 2100988, + 5932047 + ], + [ + 2100999, + 5932041 + ], + [ + 2101010, + 5932033 + ], + [ + 2101020, + 5932026 + ], + [ + 2101030, + 5932019 + ], + [ + 2101041, + 5932012 + ], + [ + 2101051, + 5932004 + ], + [ + 2101062, + 5931998 + ], + [ + 2101071, + 5931991 + ], + [ + 2101082, + 5931983 + ], + [ + 2101093, + 5931978 + ], + [ + 2101103, + 5931970 + ], + [ + 2101113, + 5931962 + ], + [ + 2101124, + 5931956 + ], + [ + 2101134, + 5931949 + ], + [ + 2101145, + 5931941 + ], + [ + 2101155, + 5931936 + ], + [ + 2101165, + 5931928 + ], + [ + 2101175, + 5931920 + ], + [ + 2101186, + 5931914 + ], + [ + 2101196, + 5931906 + ], + [ + 2101206, + 5931899 + ], + [ + 2101218, + 5931893 + ], + [ + 2101228, + 5931886 + ], + [ + 2101237, + 5931878 + ], + [ + 2101247, + 5931873 + ], + [ + 2101258, + 5931864 + ], + [ + 2101268, + 5931857 + ], + [ + 2101277, + 5931851 + ], + [ + 2101288, + 5931844 + ], + [ + 2101298, + 5931837 + ], + [ + 2101309, + 5931830 + ], + [ + 2101318, + 5931822 + ], + [ + 2101328, + 5931814 + ], + [ + 2101340, + 5931809 + ], + [ + 2101351, + 5931801 + ], + [ + 2101360, + 5931794 + ], + [ + 2101372, + 5931788 + ], + [ + 2101382, + 5931781 + ], + [ + 2101391, + 5931772 + ], + [ + 2101404, + 5931768 + ], + [ + 2101414, + 5931760 + ], + [ + 2101424, + 5931752 + ], + [ + 2101436, + 5931747 + ], + [ + 2101446, + 5931739 + ], + [ + 2101456, + 5931732 + ], + [ + 2101468, + 5931727 + ], + [ + 2101478, + 5931719 + ], + [ + 2101487, + 5931711 + ], + [ + 2101499, + 5931706 + ], + [ + 2101509, + 5931698 + ], + [ + 2101519, + 5931691 + ], + [ + 2101529, + 5931685 + ], + [ + 2101540, + 5931678 + ], + [ + 2101550, + 5931669 + ], + [ + 2101562, + 5931664 + ], + [ + 2101571, + 5931656 + ], + [ + 2101582, + 5931649 + ], + [ + 2101594, + 5931643 + ], + [ + 2101604, + 5931635 + ], + [ + 2101613, + 5931628 + ], + [ + 2101625, + 5931622 + ], + [ + 2101635, + 5931614 + ], + [ + 2101645, + 5931606 + ], + [ + 2101655, + 5931600 + ], + [ + 2101666, + 5931592 + ], + [ + 2101676, + 5931585 + ], + [ + 2101687, + 5931578 + ], + [ + 2101696, + 5931571 + ], + [ + 2101706, + 5931563 + ], + [ + 2101718, + 5931557 + ], + [ + 2101727, + 5931550 + ], + [ + 2101737, + 5931541 + ], + [ + 2101748, + 5931536 + ], + [ + 2101759, + 5931528 + ], + [ + 2101768, + 5931520 + ], + [ + 2101779, + 5931515 + ], + [ + 2101789, + 5931507 + ], + [ + 2101799, + 5931499 + ], + [ + 2101809, + 5931493 + ], + [ + 2101819, + 5931486 + ], + [ + 2101829, + 5931478 + ], + [ + 2101840, + 5931473 + ], + [ + 2101849, + 5931465 + ], + [ + 2101859, + 5931457 + ], + [ + 2101871, + 5931452 + ], + [ + 2101882, + 5931444 + ], + [ + 2101891, + 5931436 + ], + [ + 2101903, + 5931431 + ], + [ + 2101913, + 5931423 + ], + [ + 2101923, + 5931415 + ], + [ + 2101934, + 5931410 + ], + [ + 2101944, + 5931402 + ], + [ + 2101954, + 5931395 + ], + [ + 2101966, + 5931389 + ], + [ + 2101975, + 5931382 + ], + [ + 2101986, + 5931373 + ], + [ + 2101998, + 5931369 + ], + [ + 2102008, + 5931361 + ], + [ + 2102017, + 5931353 + ], + [ + 2102028, + 5931347 + ], + [ + 2102038, + 5931340 + ], + [ + 2102049, + 5931332 + ], + [ + 2102059, + 5931327 + ], + [ + 2102069, + 5931319 + ], + [ + 2102079, + 5931311 + ], + [ + 2102091, + 5931306 + ], + [ + 2102100, + 5931298 + ], + [ + 2102110, + 5931290 + ], + [ + 2102121, + 5931284 + ], + [ + 2102131, + 5931276 + ], + [ + 2102140, + 5931268 + ], + [ + 2102152, + 5931263 + ], + [ + 2102162, + 5931255 + ], + [ + 2102172, + 5931247 + ], + [ + 2102182, + 5931243 + ], + [ + 2102192, + 5931235 + ], + [ + 2102202, + 5931228 + ], + [ + 2102215, + 5931223 + ], + [ + 2102224, + 5931216 + ], + [ + 2102234, + 5931207 + ], + [ + 2102247, + 5931202 + ], + [ + 2102257, + 5931194 + ], + [ + 2102267, + 5931186 + ], + [ + 2102280, + 5931181 + ], + [ + 2102290, + 5931174 + ], + [ + 2102300, + 5931165 + ], + [ + 2102311, + 5931160 + ], + [ + 2102321, + 5931151 + ], + [ + 2102332, + 5931144 + ], + [ + 2102343, + 5931139 + ], + [ + 2102352, + 5931131 + ], + [ + 2102363, + 5931124 + ], + [ + 2102373, + 5931119 + ], + [ + 2102383, + 5931111 + ], + [ + 2102392, + 5931103 + ], + [ + 2102404, + 5931100 + ], + [ + 2102415, + 5931091 + ], + [ + 2102425, + 5931084 + ], + [ + 2102436, + 5931079 + ], + [ + 2102445, + 5931071 + ], + [ + 2102455, + 5931064 + ], + [ + 2102467, + 5931060 + ], + [ + 2102477, + 5931053 + ], + [ + 2102486, + 5931044 + ], + [ + 2102500, + 5931040 + ], + [ + 2102510, + 5931031 + ], + [ + 2102520, + 5931024 + ], + [ + 2102532, + 5931018 + ], + [ + 2102542, + 5931010 + ], + [ + 2102553, + 5931002 + ], + [ + 2102564, + 5930996 + ], + [ + 2102574, + 5930987 + ], + [ + 2102584, + 5930980 + ], + [ + 2102595, + 5930974 + ], + [ + 2102605, + 5930966 + ], + [ + 2102615, + 5930958 + ], + [ + 2102625, + 5930952 + ], + [ + 2102636, + 5930945 + ], + [ + 2102645, + 5930936 + ], + [ + 2102655, + 5930931 + ], + [ + 2102665, + 5930923 + ], + [ + 2102675, + 5930915 + ], + [ + 2102685, + 5930909 + ], + [ + 2102695, + 5930901 + ], + [ + 2102705, + 5930892 + ], + [ + 2102716, + 5930887 + ], + [ + 2102725, + 5930880 + ], + [ + 2102735, + 5930871 + ], + [ + 2102747, + 5930866 + ], + [ + 2102756, + 5930858 + ], + [ + 2102766, + 5930850 + ], + [ + 2102778, + 5930845 + ], + [ + 2102788, + 5930837 + ], + [ + 2102797, + 5930829 + ], + [ + 2102809, + 5930824 + ], + [ + 2102819, + 5930816 + ], + [ + 2102829, + 5930808 + ], + [ + 2102841, + 5930803 + ], + [ + 2102850, + 5930795 + ], + [ + 2102860, + 5930787 + ], + [ + 2102872, + 5930782 + ], + [ + 2102881, + 5930775 + ], + [ + 2102891, + 5930766 + ], + [ + 2102903, + 5930761 + ], + [ + 2102913, + 5930753 + ], + [ + 2102922, + 5930745 + ], + [ + 2102935, + 5930739 + ], + [ + 2102945, + 5930731 + ], + [ + 2102955, + 5930723 + ], + [ + 2102965, + 5930719 + ], + [ + 2102975, + 5930711 + ], + [ + 2102985, + 5930702 + ], + [ + 2102996, + 5930698 + ], + [ + 2103005, + 5930689 + ], + [ + 2103015, + 5930682 + ], + [ + 2103028, + 5930677 + ], + [ + 2103038, + 5930669 + ], + [ + 2103047, + 5930660 + ], + [ + 2103058, + 5930654 + ], + [ + 2103068, + 5930646 + ], + [ + 2103078, + 5930638 + ], + [ + 2103089, + 5930632 + ], + [ + 2103099, + 5930624 + ], + [ + 2103109, + 5930616 + ], + [ + 2103120, + 5930610 + ], + [ + 2103128, + 5930603 + ], + [ + 2103138, + 5930594 + ], + [ + 2103150, + 5930590 + ], + [ + 2103159, + 5930581 + ], + [ + 2103169, + 5930573 + ], + [ + 2103181, + 5930569 + ], + [ + 2103191, + 5930561 + ], + [ + 2103200, + 5930553 + ], + [ + 2103212, + 5930548 + ], + [ + 2103221, + 5930541 + ], + [ + 2103231, + 5930532 + ], + [ + 2103243, + 5930528 + ], + [ + 2103252, + 5930520 + ], + [ + 2103262, + 5930512 + ], + [ + 2103275, + 5930508 + ], + [ + 2103285, + 5930500 + ], + [ + 2103294, + 5930492 + ], + [ + 2103307, + 5930489 + ], + [ + 2103317, + 5930480 + ], + [ + 2103327, + 5930473 + ], + [ + 2103340, + 5930468 + ], + [ + 2103350, + 5930461 + ], + [ + 2103360, + 5930453 + ], + [ + 2103372, + 5930447 + ], + [ + 2103381, + 5930439 + ], + [ + 2103392, + 5930431 + ], + [ + 2103403, + 5930424 + ], + [ + 2103413, + 5930416 + ], + [ + 2103422, + 5930409 + ], + [ + 2103432, + 5930401 + ], + [ + 2103443, + 5930394 + ], + [ + 2103452, + 5930385 + ], + [ + 2103463, + 5930380 + ], + [ + 2103473, + 5930372 + ], + [ + 2103483, + 5930364 + ], + [ + 2103494, + 5930360 + ], + [ + 2103504, + 5930352 + ], + [ + 2103514, + 5930344 + ], + [ + 2103523, + 5930338 + ], + [ + 2103532, + 5930331 + ], + [ + 2103542, + 5930322 + ], + [ + 2103555, + 5930319 + ], + [ + 2103565, + 5930310 + ], + [ + 2103574, + 5930303 + ], + [ + 2103588, + 5930298 + ], + [ + 2103598, + 5930290 + ], + [ + 2103608, + 5930283 + ], + [ + 2103621, + 5930279 + ], + [ + 2103630, + 5930271 + ], + [ + 2103640, + 5930263 + ], + [ + 2103652, + 5930258 + ], + [ + 2103662, + 5930250 + ], + [ + 2103671, + 5930242 + ], + [ + 2103683, + 5930235 + ], + [ + 2103693, + 5930228 + ], + [ + 2103702, + 5930219 + ], + [ + 2103713, + 5930214 + ], + [ + 2103723, + 5930207 + ], + [ + 2103733, + 5930198 + ], + [ + 2103744, + 5930193 + ], + [ + 2103754, + 5930185 + ], + [ + 2103764, + 5930177 + ], + [ + 2103776, + 5930171 + ], + [ + 2103785, + 5930163 + ], + [ + 2103795, + 5930155 + ], + [ + 2103807, + 5930151 + ], + [ + 2103817, + 5930142 + ], + [ + 2103826, + 5930134 + ], + [ + 2103838, + 5930129 + ], + [ + 2103848, + 5930121 + ], + [ + 2103858, + 5930114 + ], + [ + 2103869, + 5930109 + ], + [ + 2103879, + 5930101 + ], + [ + 2103889, + 5930092 + ], + [ + 2103901, + 5930088 + ], + [ + 2103910, + 5930080 + ], + [ + 2103920, + 5930072 + ], + [ + 2103932, + 5930066 + ], + [ + 2103942, + 5930059 + ], + [ + 2103951, + 5930050 + ], + [ + 2103962, + 5930045 + ], + [ + 2103972, + 5930038 + ], + [ + 2103982, + 5930029 + ], + [ + 2103992, + 5930024 + ], + [ + 2104002, + 5930016 + ], + [ + 2104012, + 5930008 + ], + [ + 2104023, + 5930002 + ], + [ + 2104032, + 5929994 + ], + [ + 2104042, + 5929986 + ], + [ + 2104054, + 5929981 + ], + [ + 2104063, + 5929972 + ], + [ + 2104073, + 5929964 + ], + [ + 2104086, + 5929959 + ], + [ + 2104096, + 5929951 + ], + [ + 2104105, + 5929943 + ], + [ + 2104117, + 5929939 + ], + [ + 2104126, + 5929931 + ], + [ + 2104136, + 5929922 + ], + [ + 2104148, + 5929919 + ], + [ + 2104157, + 5929910 + ], + [ + 2104167, + 5929902 + ], + [ + 2104180, + 5929898 + ], + [ + 2104190, + 5929890 + ], + [ + 2104199, + 5929882 + ], + [ + 2104212, + 5929878 + ], + [ + 2104222, + 5929869 + ], + [ + 2104232, + 5929862 + ], + [ + 2104243, + 5929857 + ], + [ + 2104253, + 5929848 + ], + [ + 2104263, + 5929840 + ], + [ + 2104275, + 5929835 + ], + [ + 2104284, + 5929827 + ], + [ + 2104294, + 5929819 + ], + [ + 2104306, + 5929814 + ], + [ + 2104315, + 5929806 + ], + [ + 2104325, + 5929798 + ], + [ + 2104337, + 5929793 + ], + [ + 2104347, + 5929786 + ], + [ + 2104356, + 5929778 + ], + [ + 2104368, + 5929773 + ], + [ + 2104378, + 5929765 + ], + [ + 2104388, + 5929756 + ], + [ + 2104399, + 5929752 + ], + [ + 2104408, + 5929743 + ], + [ + 2104418, + 5929735 + ], + [ + 2104430, + 5929730 + ], + [ + 2104439, + 5929722 + ], + [ + 2104449, + 5929713 + ], + [ + 2104461, + 5929708 + ], + [ + 2104471, + 5929700 + ], + [ + 2104480, + 5929692 + ], + [ + 2104492, + 5929687 + ], + [ + 2104502, + 5929678 + ], + [ + 2104512, + 5929671 + ], + [ + 2104522, + 5929665 + ], + [ + 2104532, + 5929658 + ], + [ + 2104542, + 5929649 + ], + [ + 2104553, + 5929646 + ], + [ + 2104562, + 5929637 + ], + [ + 2104572, + 5929629 + ], + [ + 2104585, + 5929625 + ], + [ + 2104595, + 5929617 + ], + [ + 2104604, + 5929609 + ], + [ + 2104616, + 5929604 + ], + [ + 2104626, + 5929597 + ], + [ + 2104636, + 5929588 + ], + [ + 2104648, + 5929583 + ], + [ + 2104658, + 5929575 + ], + [ + 2104668, + 5929567 + ], + [ + 2104680, + 5929561 + ], + [ + 2104690, + 5929554 + ], + [ + 2104700, + 5929545 + ], + [ + 2104711, + 5929540 + ], + [ + 2104721, + 5929532 + ], + [ + 2104730, + 5929524 + ], + [ + 2104741, + 5929519 + ], + [ + 2104751, + 5929510 + ], + [ + 2104761, + 5929503 + ], + [ + 2104772, + 5929497 + ], + [ + 2104782, + 5929489 + ], + [ + 2104792, + 5929481 + ], + [ + 2104804, + 5929477 + ], + [ + 2104813, + 5929468 + ], + [ + 2104823, + 5929461 + ], + [ + 2104835, + 5929458 + ], + [ + 2104845, + 5929450 + ], + [ + 2104854, + 5929442 + ], + [ + 2104867, + 5929438 + ], + [ + 2104877, + 5929430 + ], + [ + 2104887, + 5929422 + ], + [ + 2104898, + 5929418 + ], + [ + 2104908, + 5929409 + ], + [ + 2104918, + 5929402 + ], + [ + 2104931, + 5929396 + ], + [ + 2104940, + 5929388 + ], + [ + 2104950, + 5929380 + ], + [ + 2104962, + 5929375 + ], + [ + 2104972, + 5929366 + ], + [ + 2104982, + 5929358 + ], + [ + 2104993, + 5929352 + ], + [ + 2105003, + 5929344 + ], + [ + 2105012, + 5929336 + ], + [ + 2105022, + 5929330 + ], + [ + 2105032, + 5929322 + ], + [ + 2105042, + 5929314 + ], + [ + 2105053, + 5929309 + ], + [ + 2105062, + 5929300 + ], + [ + 2105072, + 5929292 + ], + [ + 2105083, + 5929287 + ], + [ + 2105092, + 5929279 + ], + [ + 2105102, + 5929271 + ], + [ + 2105114, + 5929266 + ], + [ + 2105124, + 5929258 + ], + [ + 2105133, + 5929249 + ], + [ + 2105145, + 5929244 + ], + [ + 2105155, + 5929236 + ], + [ + 2105165, + 5929228 + ], + [ + 2105177, + 5929222 + ], + [ + 2105187, + 5929215 + ], + [ + 2105196, + 5929206 + ], + [ + 2105208, + 5929201 + ], + [ + 2105217, + 5929192 + ], + [ + 2105227, + 5929185 + ], + [ + 2105239, + 5929180 + ], + [ + 2105249, + 5929172 + ], + [ + 2105258, + 5929164 + ], + [ + 2105269, + 5929158 + ], + [ + 2105279, + 5929150 + ], + [ + 2105288, + 5929142 + ], + [ + 2105300, + 5929138 + ], + [ + 2105310, + 5929129 + ], + [ + 2105320, + 5929121 + ], + [ + 2105331, + 5929117 + ], + [ + 2105340, + 5929109 + ], + [ + 2105350, + 5929101 + ], + [ + 2105361, + 5929096 + ], + [ + 2105370, + 5929088 + ], + [ + 2105380, + 5929079 + ], + [ + 2105393, + 5929074 + ], + [ + 2105403, + 5929066 + ], + [ + 2105412, + 5929058 + ], + [ + 2105424, + 5929051 + ], + [ + 2105434, + 5929044 + ], + [ + 2105444, + 5929035 + ], + [ + 2105456, + 5929031 + ], + [ + 2105466, + 5929022 + ], + [ + 2105476, + 5929015 + ], + [ + 2105487, + 5929009 + ], + [ + 2105496, + 5929000 + ], + [ + 2105506, + 5928992 + ], + [ + 2105517, + 5928986 + ], + [ + 2105527, + 5928978 + ], + [ + 2105536, + 5928969 + ], + [ + 2105547, + 5928964 + ], + [ + 2105557, + 5928955 + ], + [ + 2105566, + 5928947 + ], + [ + 2105578, + 5928942 + ], + [ + 2105588, + 5928934 + ], + [ + 2105598, + 5928926 + ], + [ + 2105609, + 5928921 + ], + [ + 2105619, + 5928913 + ], + [ + 2105629, + 5928905 + ], + [ + 2105640, + 5928900 + ], + [ + 2105649, + 5928891 + ], + [ + 2105659, + 5928884 + ], + [ + 2105670, + 5928879 + ], + [ + 2105680, + 5928871 + ], + [ + 2105689, + 5928863 + ], + [ + 2105701, + 5928859 + ], + [ + 2105710, + 5928851 + ], + [ + 2105720, + 5928842 + ], + [ + 2105731, + 5928839 + ], + [ + 2105741, + 5928830 + ], + [ + 2105751, + 5928822 + ], + [ + 2105763, + 5928818 + ], + [ + 2105772, + 5928811 + ], + [ + 2105782, + 5928802 + ], + [ + 2105795, + 5928799 + ], + [ + 2105805, + 5928790 + ], + [ + 2105814, + 5928783 + ], + [ + 2105828, + 5928778 + ], + [ + 2105838, + 5928771 + ], + [ + 2105848, + 5928763 + ], + [ + 2105861, + 5928757 + ], + [ + 2105870, + 5928750 + ], + [ + 2105880, + 5928741 + ], + [ + 2105893, + 5928737 + ], + [ + 2105903, + 5928728 + ], + [ + 2105912, + 5928721 + ], + [ + 2105923, + 5928714 + ], + [ + 2105933, + 5928707 + ], + [ + 2105943, + 5928699 + ], + [ + 2105953, + 5928693 + ], + [ + 2105963, + 5928685 + ], + [ + 2105974, + 5928678 + ], + [ + 2105983, + 5928672 + ], + [ + 2105993, + 5928663 + ], + [ + 2106003, + 5928656 + ], + [ + 2106013, + 5928648 + ], + [ + 2106022, + 5928641 + ], + [ + 2106032, + 5928632 + ], + [ + 2106044, + 5928627 + ], + [ + 2106054, + 5928618 + ], + [ + 2106063, + 5928611 + ], + [ + 2106074, + 5928605 + ], + [ + 2106084, + 5928596 + ], + [ + 2106093, + 5928588 + ], + [ + 2106105, + 5928582 + ], + [ + 2106115, + 5928574 + ], + [ + 2106125, + 5928566 + ], + [ + 2106135, + 5928560 + ], + [ + 2106145, + 5928552 + ], + [ + 2106155, + 5928544 + ], + [ + 2106167, + 5928538 + ], + [ + 2106176, + 5928530 + ], + [ + 2106185, + 5928522 + ], + [ + 2106197, + 5928517 + ], + [ + 2106207, + 5928509 + ], + [ + 2106216, + 5928500 + ], + [ + 2106227, + 5928496 + ], + [ + 2106237, + 5928487 + ], + [ + 2106246, + 5928480 + ], + [ + 2106258, + 5928474 + ], + [ + 2106268, + 5928467 + ], + [ + 2106278, + 5928459 + ], + [ + 2106289, + 5928453 + ], + [ + 2106299, + 5928445 + ], + [ + 2106309, + 5928437 + ], + [ + 2106321, + 5928432 + ], + [ + 2106330, + 5928424 + ], + [ + 2106340, + 5928416 + ], + [ + 2106352, + 5928410 + ], + [ + 2106362, + 5928403 + ], + [ + 2106371, + 5928394 + ], + [ + 2106383, + 5928389 + ], + [ + 2106393, + 5928380 + ], + [ + 2106403, + 5928373 + ], + [ + 2106413, + 5928368 + ], + [ + 2106423, + 5928359 + ], + [ + 2106433, + 5928352 + ], + [ + 2106445, + 5928346 + ], + [ + 2106454, + 5928338 + ], + [ + 2106464, + 5928330 + ], + [ + 2106475, + 5928325 + ], + [ + 2106485, + 5928316 + ], + [ + 2106494, + 5928309 + ], + [ + 2106505, + 5928302 + ], + [ + 2106515, + 5928295 + ], + [ + 2106524, + 5928287 + ], + [ + 2106536, + 5928281 + ], + [ + 2106546, + 5928273 + ], + [ + 2106556, + 5928265 + ], + [ + 2106566, + 5928259 + ], + [ + 2106576, + 5928251 + ], + [ + 2106586, + 5928243 + ], + [ + 2106598, + 5928236 + ], + [ + 2106607, + 5928229 + ], + [ + 2106617, + 5928221 + ], + [ + 2106628, + 5928214 + ], + [ + 2106638, + 5928207 + ], + [ + 2106647, + 5928198 + ], + [ + 2106659, + 5928191 + ], + [ + 2106669, + 5928182 + ], + [ + 2106678, + 5928175 + ], + [ + 2106690, + 5928167 + ], + [ + 2106700, + 5928159 + ], + [ + 2106711, + 5928151 + ], + [ + 2106721, + 5928143 + ], + [ + 2106731, + 5928135 + ], + [ + 2106741, + 5928128 + ], + [ + 2106752, + 5928121 + ], + [ + 2106762, + 5928113 + ], + [ + 2106772, + 5928106 + ], + [ + 2106784, + 5928099 + ], + [ + 2106793, + 5928092 + ], + [ + 2106803, + 5928084 + ], + [ + 2106815, + 5928079 + ], + [ + 2106825, + 5928070 + ], + [ + 2106835, + 5928063 + ], + [ + 2106844, + 5928059 + ], + [ + 2106855, + 5928051 + ], + [ + 2106865, + 5928044 + ], + [ + 2106874, + 5928039 + ], + [ + 2106884, + 5928032 + ], + [ + 2106894, + 5928024 + ], + [ + 2106904, + 5928019 + ], + [ + 2106913, + 5928010 + ], + [ + 2106924, + 5928003 + ], + [ + 2106935, + 5927996 + ], + [ + 2106945, + 5927989 + ], + [ + 2106955, + 5927982 + ], + [ + 2106966, + 5927976 + ], + [ + 2106976, + 5927968 + ], + [ + 2106986, + 5927960 + ], + [ + 2106997, + 5927955 + ], + [ + 2107007, + 5927947 + ], + [ + 2107017, + 5927940 + ], + [ + 2107029, + 5927934 + ], + [ + 2107038, + 5927927 + ], + [ + 2107048, + 5927919 + ], + [ + 2107060, + 5927914 + ], + [ + 2107070, + 5927906 + ], + [ + 2107079, + 5927899 + ], + [ + 2107090, + 5927895 + ], + [ + 2107100, + 5927887 + ], + [ + 2107111, + 5927880 + ], + [ + 2107120, + 5927874 + ], + [ + 2107131, + 5927867 + ], + [ + 2107141, + 5927859 + ], + [ + 2107154, + 5927853 + ], + [ + 2107164, + 5927845 + ], + [ + 2107174, + 5927838 + ], + [ + 2107186, + 5927831 + ], + [ + 2107197, + 5927824 + ], + [ + 2107207, + 5927816 + ], + [ + 2107217, + 5927810 + ], + [ + 2107227, + 5927803 + ], + [ + 2107238, + 5927795 + ], + [ + 2107247, + 5927789 + ], + [ + 2107257, + 5927782 + ], + [ + 2107268, + 5927775 + ], + [ + 2107279, + 5927768 + ], + [ + 2107288, + 5927761 + ], + [ + 2107299, + 5927753 + ], + [ + 2107309, + 5927746 + ], + [ + 2107320, + 5927739 + ], + [ + 2107329, + 5927732 + ], + [ + 2107339, + 5927724 + ], + [ + 2107350, + 5927717 + ], + [ + 2107360, + 5927710 + ], + [ + 2107372, + 5927704 + ], + [ + 2107382, + 5927697 + ], + [ + 2107393, + 5927689 + ], + [ + 2107405, + 5927684 + ], + [ + 2107414, + 5927676 + ], + [ + 2107425, + 5927669 + ], + [ + 2107436, + 5927662 + ], + [ + 2107447, + 5927655 + ], + [ + 2107456, + 5927648 + ], + [ + 2107467, + 5927641 + ], + [ + 2107478, + 5927633 + ], + [ + 2107488, + 5927627 + ], + [ + 2107498, + 5927620 + ], + [ + 2107509, + 5927612 + ], + [ + 2107519, + 5927606 + ], + [ + 2107530, + 5927599 + ], + [ + 2107539, + 5927592 + ], + [ + 2107550, + 5927584 + ], + [ + 2107560, + 5927578 + ], + [ + 2107571, + 5927570 + ], + [ + 2107580, + 5927564 + ], + [ + 2107590, + 5927557 + ], + [ + 2107601, + 5927550 + ], + [ + 2107612, + 5927543 + ], + [ + 2107621, + 5927535 + ], + [ + 2107631, + 5927528 + ], + [ + 2107642, + 5927521 + ], + [ + 2107652, + 5927514 + ], + [ + 2107662, + 5927507 + ], + [ + 2107673, + 5927500 + ], + [ + 2107683, + 5927493 + ], + [ + 2107693, + 5927486 + ], + [ + 2107704, + 5927479 + ], + [ + 2107715, + 5927473 + ], + [ + 2107725, + 5927467 + ], + [ + 2107736, + 5927459 + ], + [ + 2107746, + 5927452 + ], + [ + 2107757, + 5927444 + ], + [ + 2107767, + 5927437 + ], + [ + 2107776, + 5927430 + ], + [ + 2107787, + 5927423 + ], + [ + 2107798, + 5927415 + ], + [ + 2107808, + 5927409 + ], + [ + 2107817, + 5927402 + ], + [ + 2107828, + 5927395 + ], + [ + 2107839, + 5927388 + ], + [ + 2107850, + 5927381 + ], + [ + 2107859, + 5927374 + ], + [ + 2107871, + 5927367 + ], + [ + 2107881, + 5927360 + ], + [ + 2107892, + 5927352 + ], + [ + 2107902, + 5927345 + ], + [ + 2107913, + 5927338 + ], + [ + 2107924, + 5927331 + ], + [ + 2107935, + 5927323 + ], + [ + 2107944, + 5927316 + ], + [ + 2107955, + 5927309 + ], + [ + 2107966, + 5927302 + ], + [ + 2107976, + 5927295 + ], + [ + 2107986, + 5927288 + ], + [ + 2107998, + 5927282 + ], + [ + 2108008, + 5927276 + ], + [ + 2108019, + 5927269 + ], + [ + 2108030, + 5927263 + ], + [ + 2108041, + 5927256 + ], + [ + 2108051, + 5927249 + ], + [ + 2108062, + 5927244 + ], + [ + 2108071, + 5927236 + ], + [ + 2108082, + 5927230 + ], + [ + 2108092, + 5927223 + ], + [ + 2108103, + 5927216 + ], + [ + 2108114, + 5927209 + ], + [ + 2108123, + 5927202 + ], + [ + 2108134, + 5927195 + ], + [ + 2108145, + 5927189 + ], + [ + 2108154, + 5927181 + ], + [ + 2108165, + 5927174 + ], + [ + 2108176, + 5927168 + ], + [ + 2108186, + 5927159 + ], + [ + 2108196, + 5927153 + ], + [ + 2108206, + 5927145 + ], + [ + 2108217, + 5927138 + ], + [ + 2108228, + 5927131 + ], + [ + 2108237, + 5927124 + ], + [ + 2108247, + 5927117 + ], + [ + 2108258, + 5927110 + ], + [ + 2108269, + 5927102 + ], + [ + 2108278, + 5927095 + ], + [ + 2108289, + 5927089 + ], + [ + 2108299, + 5927081 + ], + [ + 2108309, + 5927075 + ], + [ + 2108319, + 5927067 + ], + [ + 2108330, + 5927061 + ], + [ + 2108340, + 5927054 + ], + [ + 2108351, + 5927047 + ], + [ + 2108360, + 5927039 + ], + [ + 2108371, + 5927033 + ], + [ + 2108382, + 5927026 + ], + [ + 2108393, + 5927019 + ], + [ + 2108402, + 5927013 + ], + [ + 2108413, + 5927006 + ], + [ + 2108424, + 5926999 + ], + [ + 2108433, + 5926991 + ], + [ + 2108443, + 5926985 + ], + [ + 2108454, + 5926977 + ], + [ + 2108465, + 5926971 + ], + [ + 2108475, + 5926963 + ], + [ + 2108485, + 5926957 + ], + [ + 2108495, + 5926949 + ], + [ + 2108506, + 5926942 + ], + [ + 2108517, + 5926936 + ], + [ + 2108526, + 5926928 + ], + [ + 2108537, + 5926922 + ], + [ + 2108548, + 5926914 + ], + [ + 2108558, + 5926908 + ], + [ + 2108568, + 5926901 + ], + [ + 2108579, + 5926895 + ], + [ + 2108590, + 5926888 + ], + [ + 2108601, + 5926882 + ], + [ + 2108611, + 5926874 + ], + [ + 2108622, + 5926868 + ], + [ + 2108633, + 5926861 + ], + [ + 2108644, + 5926854 + ], + [ + 2108653, + 5926847 + ], + [ + 2108664, + 5926841 + ], + [ + 2108675, + 5926834 + ], + [ + 2108685, + 5926827 + ], + [ + 2108695, + 5926820 + ], + [ + 2108705, + 5926813 + ], + [ + 2108716, + 5926807 + ], + [ + 2108727, + 5926800 + ], + [ + 2108738, + 5926793 + ], + [ + 2108747, + 5926785 + ], + [ + 2108758, + 5926779 + ], + [ + 2108769, + 5926771 + ], + [ + 2108778, + 5926764 + ], + [ + 2108789, + 5926756 + ], + [ + 2108800, + 5926750 + ], + [ + 2108810, + 5926744 + ], + [ + 2108821, + 5926737 + ], + [ + 2108831, + 5926730 + ], + [ + 2108841, + 5926724 + ], + [ + 2108852, + 5926718 + ], + [ + 2108863, + 5926710 + ], + [ + 2108873, + 5926705 + ], + [ + 2108883, + 5926698 + ], + [ + 2108894, + 5926691 + ], + [ + 2108906, + 5926683 + ], + [ + 2108916, + 5926677 + ], + [ + 2108927, + 5926669 + ], + [ + 2108939, + 5926662 + ], + [ + 2108950, + 5926654 + ], + [ + 2108959, + 5926648 + ], + [ + 2108970, + 5926640 + ], + [ + 2108981, + 5926633 + ], + [ + 2108992, + 5926627 + ], + [ + 2109001, + 5926619 + ], + [ + 2109011, + 5926613 + ], + [ + 2109022, + 5926606 + ], + [ + 2109031, + 5926599 + ], + [ + 2109041, + 5926591 + ], + [ + 2109052, + 5926585 + ], + [ + 2109062, + 5926576 + ], + [ + 2109071, + 5926570 + ], + [ + 2109082, + 5926563 + ], + [ + 2109092, + 5926555 + ], + [ + 2109103, + 5926548 + ], + [ + 2109112, + 5926541 + ], + [ + 2109122, + 5926534 + ], + [ + 2109133, + 5926526 + ], + [ + 2109144, + 5926520 + ], + [ + 2109153, + 5926514 + ], + [ + 2109164, + 5926507 + ], + [ + 2109175, + 5926499 + ], + [ + 2109185, + 5926494 + ], + [ + 2109195, + 5926487 + ], + [ + 2109206, + 5926479 + ], + [ + 2109217, + 5926473 + ], + [ + 2109228, + 5926466 + ], + [ + 2109237, + 5926459 + ], + [ + 2109248, + 5926451 + ], + [ + 2109259, + 5926444 + ], + [ + 2109270, + 5926437 + ], + [ + 2109279, + 5926430 + ], + [ + 2109290, + 5926422 + ], + [ + 2109301, + 5926415 + ], + [ + 2109311, + 5926408 + ], + [ + 2109320, + 5926401 + ], + [ + 2109331, + 5926394 + ], + [ + 2109341, + 5926386 + ], + [ + 2109351, + 5926380 + ], + [ + 2109361, + 5926372 + ], + [ + 2109372, + 5926366 + ], + [ + 2109383, + 5926358 + ], + [ + 2109393, + 5926351 + ], + [ + 2109404, + 5926344 + ], + [ + 2109414, + 5926337 + ], + [ + 2109425, + 5926330 + ], + [ + 2109436, + 5926324 + ], + [ + 2109446, + 5926317 + ], + [ + 2109457, + 5926310 + ], + [ + 2109466, + 5926304 + ], + [ + 2109477, + 5926296 + ], + [ + 2109487, + 5926289 + ], + [ + 2109497, + 5926282 + ], + [ + 2109508, + 5926276 + ], + [ + 2109518, + 5926268 + ], + [ + 2109528, + 5926261 + ], + [ + 2109539, + 5926254 + ], + [ + 2109550, + 5926247 + ], + [ + 2109561, + 5926240 + ], + [ + 2109570, + 5926234 + ], + [ + 2109581, + 5926226 + ], + [ + 2109592, + 5926220 + ], + [ + 2109602, + 5926213 + ], + [ + 2109612, + 5926206 + ], + [ + 2109622, + 5926199 + ], + [ + 2109633, + 5926191 + ], + [ + 2109643, + 5926185 + ], + [ + 2109653, + 5926178 + ], + [ + 2109664, + 5926171 + ], + [ + 2109674, + 5926163 + ], + [ + 2109685, + 5926157 + ], + [ + 2109695, + 5926150 + ], + [ + 2109706, + 5926143 + ], + [ + 2109717, + 5926136 + ], + [ + 2109727, + 5926129 + ], + [ + 2109737, + 5926122 + ], + [ + 2109746, + 5926115 + ], + [ + 2109757, + 5926108 + ], + [ + 2109768, + 5926101 + ], + [ + 2109777, + 5926094 + ], + [ + 2109788, + 5926087 + ], + [ + 2109798, + 5926080 + ], + [ + 2109810, + 5926072 + ], + [ + 2109820, + 5926065 + ], + [ + 2109830, + 5926058 + ], + [ + 2109841, + 5926050 + ], + [ + 2109851, + 5926043 + ], + [ + 2109861, + 5926036 + ], + [ + 2109872, + 5926028 + ], + [ + 2109882, + 5926020 + ], + [ + 2109892, + 5926013 + ], + [ + 2109903, + 5926006 + ], + [ + 2109913, + 5926000 + ], + [ + 2109924, + 5925992 + ], + [ + 2109935, + 5925986 + ], + [ + 2109945, + 5925979 + ], + [ + 2109956, + 5925972 + ], + [ + 2109967, + 5925965 + ], + [ + 2109977, + 5925959 + ], + [ + 2109988, + 5925951 + ], + [ + 2109999, + 5925944 + ], + [ + 2110010, + 5925937 + ], + [ + 2110019, + 5925930 + ], + [ + 2110030, + 5925922 + ], + [ + 2110040, + 5925914 + ], + [ + 2110051, + 5925908 + ], + [ + 2110061, + 5925900 + ], + [ + 2110072, + 5925893 + ], + [ + 2110082, + 5925886 + ], + [ + 2110093, + 5925879 + ], + [ + 2110103, + 5925871 + ], + [ + 2110114, + 5925865 + ], + [ + 2110125, + 5925857 + ], + [ + 2110136, + 5925851 + ], + [ + 2110145, + 5925843 + ], + [ + 2110157, + 5925836 + ], + [ + 2110167, + 5925830 + ], + [ + 2110177, + 5925822 + ], + [ + 2110188, + 5925815 + ], + [ + 2110199, + 5925808 + ], + [ + 2110210, + 5925801 + ], + [ + 2110220, + 5925794 + ], + [ + 2110231, + 5925787 + ], + [ + 2110241, + 5925779 + ], + [ + 2110252, + 5925772 + ], + [ + 2110262, + 5925765 + ], + [ + 2110273, + 5925758 + ], + [ + 2110284, + 5925750 + ], + [ + 2110294, + 5925743 + ], + [ + 2110304, + 5925735 + ], + [ + 2110315, + 5925728 + ], + [ + 2110326, + 5925721 + ], + [ + 2110336, + 5925714 + ], + [ + 2110346, + 5925707 + ], + [ + 2110357, + 5925699 + ], + [ + 2110368, + 5925693 + ], + [ + 2110378, + 5925685 + ], + [ + 2110388, + 5925678 + ], + [ + 2110399, + 5925671 + ], + [ + 2110409, + 5925664 + ], + [ + 2110420, + 5925656 + ], + [ + 2110430, + 5925650 + ], + [ + 2110441, + 5925642 + ], + [ + 2110451, + 5925635 + ], + [ + 2110461, + 5925628 + ], + [ + 2110471, + 5925621 + ], + [ + 2110482, + 5925615 + ], + [ + 2110492, + 5925607 + ], + [ + 2110501, + 5925602 + ], + [ + 2110511, + 5925594 + ], + [ + 2110522, + 5925587 + ], + [ + 2110532, + 5925581 + ], + [ + 2110542, + 5925574 + ], + [ + 2110552, + 5925566 + ], + [ + 2110562, + 5925562 + ], + [ + 2110572, + 5925555 + ], + [ + 2110583, + 5925547 + ], + [ + 2110591, + 5925543 + ], + [ + 2110601, + 5925535 + ], + [ + 2110612, + 5925528 + ], + [ + 2110621, + 5925523 + ], + [ + 2110630, + 5925516 + ], + [ + 2110641, + 5925509 + ], + [ + 2110651, + 5925504 + ], + [ + 2110661, + 5925498 + ], + [ + 2110672, + 5925490 + ], + [ + 2110683, + 5925485 + ], + [ + 2110694, + 5925478 + ], + [ + 2110705, + 5925471 + ], + [ + 2110715, + 5925465 + ], + [ + 2110725, + 5925458 + ], + [ + 2110736, + 5925451 + ], + [ + 2110746, + 5925444 + ], + [ + 2110757, + 5925437 + ], + [ + 2110767, + 5925430 + ], + [ + 2110778, + 5925423 + ], + [ + 2110788, + 5925416 + ], + [ + 2110799, + 5925410 + ], + [ + 2110810, + 5925401 + ], + [ + 2110820, + 5925395 + ], + [ + 2110831, + 5925388 + ], + [ + 2110842, + 5925380 + ], + [ + 2110852, + 5925373 + ], + [ + 2110862, + 5925366 + ], + [ + 2110871, + 5925357 + ], + [ + 2110882, + 5925351 + ], + [ + 2110892, + 5925343 + ], + [ + 2110901, + 5925336 + ], + [ + 2110912, + 5925329 + ], + [ + 2110921, + 5925322 + ], + [ + 2110931, + 5925314 + ], + [ + 2110941, + 5925306 + ], + [ + 2110952, + 5925299 + ], + [ + 2110961, + 5925291 + ], + [ + 2110972, + 5925284 + ], + [ + 2110982, + 5925277 + ], + [ + 2110993, + 5925270 + ], + [ + 2111002, + 5925264 + ], + [ + 2111013, + 5925256 + ], + [ + 2111024, + 5925250 + ], + [ + 2111035, + 5925242 + ], + [ + 2111044, + 5925235 + ], + [ + 2111055, + 5925229 + ], + [ + 2111066, + 5925222 + ], + [ + 2111076, + 5925214 + ], + [ + 2111086, + 5925208 + ], + [ + 2111097, + 5925200 + ], + [ + 2111108, + 5925193 + ], + [ + 2111118, + 5925186 + ], + [ + 2111128, + 5925179 + ], + [ + 2111138, + 5925173 + ], + [ + 2111148, + 5925166 + ], + [ + 2111159, + 5925159 + ], + [ + 2111169, + 5925152 + ], + [ + 2111179, + 5925146 + ], + [ + 2111190, + 5925138 + ], + [ + 2111201, + 5925132 + ], + [ + 2111211, + 5925125 + ], + [ + 2111221, + 5925118 + ], + [ + 2111232, + 5925110 + ], + [ + 2111243, + 5925104 + ], + [ + 2111252, + 5925096 + ], + [ + 2111263, + 5925090 + ], + [ + 2111274, + 5925083 + ], + [ + 2111285, + 5925075 + ], + [ + 2111295, + 5925069 + ], + [ + 2111305, + 5925061 + ], + [ + 2111316, + 5925054 + ], + [ + 2111327, + 5925047 + ], + [ + 2111336, + 5925041 + ], + [ + 2111347, + 5925033 + ], + [ + 2111358, + 5925026 + ], + [ + 2111368, + 5925019 + ], + [ + 2111378, + 5925012 + ], + [ + 2111388, + 5925004 + ], + [ + 2111399, + 5924997 + ], + [ + 2111408, + 5924990 + ], + [ + 2111419, + 5924982 + ], + [ + 2111429, + 5924976 + ], + [ + 2111440, + 5924968 + ], + [ + 2111449, + 5924961 + ], + [ + 2111460, + 5924954 + ], + [ + 2111470, + 5924947 + ], + [ + 2111481, + 5924939 + ], + [ + 2111491, + 5924932 + ], + [ + 2111502, + 5924925 + ], + [ + 2111512, + 5924918 + ], + [ + 2111524, + 5924911 + ], + [ + 2111533, + 5924904 + ], + [ + 2111544, + 5924897 + ], + [ + 2111555, + 5924891 + ], + [ + 2111566, + 5924884 + ], + [ + 2111575, + 5924876 + ], + [ + 2111586, + 5924870 + ], + [ + 2111597, + 5924862 + ], + [ + 2111607, + 5924856 + ], + [ + 2111618, + 5924848 + ], + [ + 2111628, + 5924842 + ], + [ + 2111639, + 5924834 + ], + [ + 2111650, + 5924828 + ], + [ + 2111660, + 5924820 + ], + [ + 2111670, + 5924814 + ], + [ + 2111681, + 5924807 + ], + [ + 2111692, + 5924800 + ], + [ + 2111701, + 5924793 + ], + [ + 2111712, + 5924786 + ], + [ + 2111722, + 5924779 + ], + [ + 2111733, + 5924771 + ], + [ + 2111741, + 5924766 + ], + [ + 2111752, + 5924758 + ], + [ + 2111762, + 5924751 + ], + [ + 2111773, + 5924745 + ], + [ + 2111782, + 5924739 + ], + [ + 2111793, + 5924732 + ], + [ + 2111804, + 5924725 + ], + [ + 2111815, + 5924719 + ], + [ + 2111825, + 5924711 + ], + [ + 2111836, + 5924705 + ], + [ + 2111846, + 5924698 + ], + [ + 2111857, + 5924691 + ], + [ + 2111866, + 5924684 + ], + [ + 2111877, + 5924677 + ], + [ + 2111888, + 5924669 + ], + [ + 2111899, + 5924663 + ], + [ + 2111908, + 5924655 + ], + [ + 2111919, + 5924648 + ], + [ + 2111930, + 5924641 + ], + [ + 2111940, + 5924633 + ], + [ + 2111950, + 5924626 + ], + [ + 2111960, + 5924618 + ], + [ + 2111971, + 5924611 + ], + [ + 2111981, + 5924604 + ], + [ + 2111991, + 5924597 + ], + [ + 2112002, + 5924589 + ], + [ + 2112012, + 5924582 + ], + [ + 2112024, + 5924576 + ], + [ + 2112034, + 5924569 + ], + [ + 2112044, + 5924561 + ] + ], + [ + [ + 2074642, + 5829079 + ], + [ + 2074648, + 5829068 + ], + [ + 2074656, + 5829058 + ], + [ + 2074663, + 5829048 + ], + [ + 2074671, + 5829038 + ], + [ + 2074679, + 5829029 + ], + [ + 2074686, + 5829018 + ], + [ + 2074695, + 5829009 + ], + [ + 2074702, + 5828999 + ], + [ + 2074710, + 5828989 + ], + [ + 2074718, + 5828980 + ], + [ + 2074725, + 5828970 + ], + [ + 2074733, + 5828960 + ], + [ + 2074742, + 5828951 + ], + [ + 2074749, + 5828940 + ], + [ + 2074757, + 5828931 + ], + [ + 2074764, + 5828922 + ], + [ + 2074773, + 5828912 + ], + [ + 2074781, + 5828902 + ], + [ + 2074788, + 5828893 + ], + [ + 2074797, + 5828883 + ], + [ + 2074804, + 5828874 + ], + [ + 2074813, + 5828863 + ], + [ + 2074821, + 5828854 + ], + [ + 2074828, + 5828845 + ], + [ + 2074837, + 5828835 + ], + [ + 2074845, + 5828826 + ], + [ + 2074853, + 5828817 + ], + [ + 2074861, + 5828807 + ], + [ + 2074869, + 5828798 + ], + [ + 2074877, + 5828788 + ], + [ + 2074886, + 5828779 + ], + [ + 2074894, + 5828770 + ], + [ + 2074902, + 5828760 + ], + [ + 2074911, + 5828751 + ], + [ + 2074919, + 5828742 + ], + [ + 2074927, + 5828732 + ], + [ + 2074935, + 5828723 + ], + [ + 2074944, + 5828713 + ], + [ + 2074953, + 5828705 + ], + [ + 2074961, + 5828696 + ], + [ + 2074969, + 5828686 + ], + [ + 2074978, + 5828677 + ], + [ + 2074986, + 5828668 + ], + [ + 2074995, + 5828659 + ], + [ + 2075004, + 5828650 + ], + [ + 2075012, + 5828641 + ], + [ + 2075021, + 5828632 + ], + [ + 2075030, + 5828622 + ], + [ + 2075038, + 5828614 + ], + [ + 2075047, + 5828605 + ], + [ + 2075055, + 5828595 + ], + [ + 2075064, + 5828587 + ], + [ + 2075073, + 5828577 + ], + [ + 2075081, + 5828569 + ], + [ + 2075090, + 5828560 + ], + [ + 2075099, + 5828551 + ], + [ + 2075107, + 5828542 + ], + [ + 2075116, + 5828533 + ], + [ + 2075125, + 5828524 + ], + [ + 2075133, + 5828516 + ], + [ + 2075142, + 5828506 + ], + [ + 2075151, + 5828498 + ], + [ + 2075160, + 5828488 + ], + [ + 2075169, + 5828480 + ], + [ + 2075178, + 5828472 + ], + [ + 2075186, + 5828462 + ], + [ + 2075196, + 5828454 + ], + [ + 2075205, + 5828445 + ], + [ + 2075213, + 5828437 + ], + [ + 2075223, + 5828428 + ], + [ + 2075232, + 5828419 + ], + [ + 2075241, + 5828411 + ], + [ + 2075250, + 5828402 + ], + [ + 2075260, + 5828394 + ], + [ + 2075268, + 5828385 + ], + [ + 2075278, + 5828377 + ], + [ + 2075288, + 5828369 + ], + [ + 2075296, + 5828361 + ], + [ + 2075306, + 5828353 + ], + [ + 2075316, + 5828344 + ], + [ + 2075325, + 5828336 + ], + [ + 2075334, + 5828328 + ], + [ + 2075344, + 5828320 + ], + [ + 2075354, + 5828313 + ], + [ + 2075363, + 5828304 + ], + [ + 2075373, + 5828297 + ], + [ + 2075383, + 5828289 + ], + [ + 2075393, + 5828281 + ], + [ + 2075403, + 5828273 + ], + [ + 2075413, + 5828266 + ], + [ + 2075422, + 5828258 + ], + [ + 2075433, + 5828251 + ], + [ + 2075443, + 5828244 + ], + [ + 2075453, + 5828236 + ], + [ + 2075463, + 5828230 + ], + [ + 2075473, + 5828222 + ], + [ + 2075484, + 5828215 + ], + [ + 2075495, + 5828208 + ], + [ + 2075504, + 5828201 + ], + [ + 2075515, + 5828194 + ], + [ + 2075526, + 5828188 + ], + [ + 2075537, + 5828181 + ], + [ + 2075547, + 5828175 + ], + [ + 2075558, + 5828168 + ], + [ + 2075569, + 5828162 + ], + [ + 2075580, + 5828155 + ], + [ + 2075590, + 5828149 + ], + [ + 2075601, + 5828143 + ], + [ + 2075612, + 5828138 + ], + [ + 2075623, + 5828131 + ], + [ + 2075635, + 5828126 + ], + [ + 2075645, + 5828120 + ], + [ + 2075657, + 5828115 + ], + [ + 2075668, + 5828109 + ], + [ + 2075680, + 5828105 + ], + [ + 2075691, + 5828099 + ], + [ + 2075702, + 5828095 + ], + [ + 2075714, + 5828090 + ], + [ + 2075726, + 5828086 + ], + [ + 2075738, + 5828081 + ], + [ + 2075750, + 5828078 + ], + [ + 2075762, + 5828074 + ], + [ + 2075774, + 5828071 + ], + [ + 2075786, + 5828067 + ], + [ + 2075797, + 5828064 + ], + [ + 2075809, + 5828061 + ], + [ + 2075822, + 5828059 + ], + [ + 2075834, + 5828056 + ], + [ + 2075847, + 5828054 + ], + [ + 2075859, + 5828052 + ], + [ + 2075872, + 5828051 + ], + [ + 2075884, + 5828049 + ], + [ + 2075896, + 5828048 + ], + [ + 2075909, + 5828047 + ], + [ + 2075921, + 5828046 + ], + [ + 2075934, + 5828046 + ], + [ + 2075947, + 5828045 + ], + [ + 2075959, + 5828046 + ], + [ + 2075971, + 5828046 + ], + [ + 2075984, + 5828047 + ], + [ + 2075997, + 5828048 + ], + [ + 2076010, + 5828049 + ], + [ + 2076022, + 5828050 + ], + [ + 2076034, + 5828052 + ], + [ + 2076047, + 5828054 + ], + [ + 2076059, + 5828057 + ], + [ + 2076071, + 5828059 + ], + [ + 2076083, + 5828062 + ], + [ + 2076096, + 5828064 + ], + [ + 2076108, + 5828068 + ], + [ + 2076120, + 5828071 + ], + [ + 2076132, + 5828075 + ], + [ + 2076143, + 5828078 + ], + [ + 2076156, + 5828083 + ], + [ + 2076168, + 5828087 + ], + [ + 2076179, + 5828092 + ], + [ + 2076190, + 5828096 + ], + [ + 2076202, + 5828102 + ], + [ + 2076213, + 5828107 + ], + [ + 2076224, + 5828113 + ], + [ + 2076235, + 5828118 + ], + [ + 2076247, + 5828125 + ], + [ + 2076258, + 5828130 + ], + [ + 2076268, + 5828137 + ], + [ + 2076279, + 5828144 + ], + [ + 2076290, + 5828151 + ], + [ + 2076300, + 5828158 + ], + [ + 2076310, + 5828165 + ], + [ + 2076320, + 5828172 + ], + [ + 2076330, + 5828180 + ], + [ + 2076340, + 5828188 + ], + [ + 2076350, + 5828196 + ], + [ + 2076359, + 5828204 + ], + [ + 2076369, + 5828212 + ], + [ + 2076377, + 5828221 + ], + [ + 2076387, + 5828229 + ], + [ + 2076396, + 5828238 + ], + [ + 2076405, + 5828247 + ], + [ + 2076414, + 5828255 + ], + [ + 2076423, + 5828264 + ], + [ + 2076432, + 5828273 + ], + [ + 2076441, + 5828282 + ], + [ + 2076449, + 5828291 + ], + [ + 2076458, + 5828301 + ], + [ + 2076466, + 5828309 + ], + [ + 2076475, + 5828319 + ], + [ + 2076483, + 5828328 + ], + [ + 2076492, + 5828337 + ], + [ + 2076500, + 5828347 + ], + [ + 2076508, + 5828356 + ], + [ + 2076516, + 5828365 + ], + [ + 2076524, + 5828375 + ], + [ + 2076532, + 5828385 + ], + [ + 2076540, + 5828394 + ], + [ + 2076549, + 5828404 + ], + [ + 2076556, + 5828414 + ], + [ + 2076563, + 5828423 + ], + [ + 2076572, + 5828433 + ], + [ + 2076579, + 5828443 + ], + [ + 2076587, + 5828453 + ], + [ + 2076594, + 5828463 + ], + [ + 2076603, + 5828473 + ], + [ + 2076610, + 5828483 + ], + [ + 2076618, + 5828492 + ], + [ + 2076625, + 5828503 + ], + [ + 2076633, + 5828513 + ], + [ + 2076640, + 5828523 + ], + [ + 2076647, + 5828533 + ], + [ + 2076655, + 5828543 + ], + [ + 2076662, + 5828553 + ], + [ + 2076670, + 5828563 + ], + [ + 2076677, + 5828573 + ], + [ + 2076685, + 5828583 + ], + [ + 2076692, + 5828594 + ], + [ + 2076700, + 5828603 + ], + [ + 2076707, + 5828614 + ], + [ + 2076715, + 5828624 + ], + [ + 2076721, + 5828635 + ], + [ + 2076728, + 5828644 + ], + [ + 2076736, + 5828655 + ], + [ + 2076743, + 5828665 + ], + [ + 2076751, + 5828675 + ], + [ + 2076757, + 5828685 + ], + [ + 2076765, + 5828696 + ], + [ + 2076772, + 5828706 + ], + [ + 2076780, + 5828716 + ], + [ + 2076787, + 5828726 + ], + [ + 2076794, + 5828737 + ], + [ + 2076801, + 5828746 + ], + [ + 2076809, + 5828757 + ], + [ + 2076815, + 5828767 + ], + [ + 2076822, + 5828778 + ], + [ + 2076830, + 5828788 + ], + [ + 2076836, + 5828798 + ], + [ + 2076844, + 5828809 + ], + [ + 2076851, + 5828819 + ], + [ + 2076858, + 5828829 + ], + [ + 2076865, + 5828840 + ], + [ + 2076873, + 5828850 + ], + [ + 2076879, + 5828861 + ], + [ + 2076887, + 5828870 + ], + [ + 2076893, + 5828881 + ], + [ + 2076901, + 5828892 + ], + [ + 2076908, + 5828901 + ], + [ + 2076914, + 5828912 + ], + [ + 2076922, + 5828922 + ], + [ + 2076928, + 5828933 + ], + [ + 2076936, + 5828943 + ], + [ + 2076942, + 5828954 + ], + [ + 2076950, + 5828964 + ], + [ + 2076956, + 5828975 + ], + [ + 2076964, + 5828984 + ], + [ + 2076970, + 5828995 + ], + [ + 2076978, + 5829006 + ], + [ + 2076984, + 5829017 + ], + [ + 2076992, + 5829026 + ], + [ + 2076998, + 5829037 + ], + [ + 2077006, + 5829048 + ], + [ + 2077012, + 5829058 + ], + [ + 2077020, + 5829068 + ], + [ + 2077026, + 5829079 + ], + [ + 2077033, + 5829090 + ], + [ + 2077040, + 5829100 + ], + [ + 2077047, + 5829110 + ], + [ + 2077054, + 5829121 + ], + [ + 2077061, + 5829131 + ], + [ + 2077068, + 5829142 + ], + [ + 2077075, + 5829152 + ], + [ + 2077082, + 5829163 + ], + [ + 2077088, + 5829173 + ], + [ + 2077096, + 5829183 + ], + [ + 2077102, + 5829194 + ], + [ + 2077110, + 5829204 + ], + [ + 2077116, + 5829215 + ], + [ + 2077124, + 5829225 + ], + [ + 2077130, + 5829236 + ], + [ + 2077137, + 5829246 + ], + [ + 2077144, + 5829257 + ], + [ + 2077151, + 5829267 + ], + [ + 2077158, + 5829278 + ], + [ + 2077165, + 5829288 + ], + [ + 2077172, + 5829299 + ], + [ + 2077178, + 5829309 + ], + [ + 2077186, + 5829320 + ], + [ + 2077192, + 5829330 + ], + [ + 2077200, + 5829341 + ], + [ + 2077206, + 5829351 + ], + [ + 2077214, + 5829361 + ], + [ + 2077220, + 5829372 + ], + [ + 2077227, + 5829383 + ], + [ + 2077234, + 5829392 + ], + [ + 2077242, + 5829403 + ], + [ + 2077248, + 5829414 + ], + [ + 2077255, + 5829424 + ], + [ + 2077262, + 5829434 + ], + [ + 2077269, + 5829445 + ], + [ + 2077277, + 5829455 + ], + [ + 2077283, + 5829466 + ], + [ + 2077291, + 5829476 + ], + [ + 2077298, + 5829486 + ], + [ + 2077305, + 5829497 + ], + [ + 2077311, + 5829507 + ], + [ + 2077319, + 5829517 + ], + [ + 2077326, + 5829528 + ], + [ + 2077333, + 5829539 + ], + [ + 2077340, + 5829548 + ], + [ + 2077348, + 5829559 + ], + [ + 2077354, + 5829570 + ], + [ + 2077361, + 5829580 + ], + [ + 2077368, + 5829590 + ], + [ + 2077375, + 5829601 + ], + [ + 2077382, + 5829611 + ], + [ + 2077389, + 5829622 + ], + [ + 2077396, + 5829632 + ], + [ + 2077403, + 5829642 + ], + [ + 2077410, + 5829653 + ], + [ + 2077417, + 5829664 + ], + [ + 2077425, + 5829673 + ], + [ + 2077431, + 5829684 + ], + [ + 2077438, + 5829695 + ], + [ + 2077446, + 5829704 + ], + [ + 2077453, + 5829714 + ], + [ + 2077459, + 5829725 + ], + [ + 2077466, + 5829735 + ], + [ + 2077474, + 5829745 + ], + [ + 2077480, + 5829756 + ], + [ + 2077488, + 5829766 + ], + [ + 2077495, + 5829777 + ], + [ + 2077502, + 5829787 + ], + [ + 2077509, + 5829797 + ], + [ + 2077516, + 5829808 + ], + [ + 2077523, + 5829819 + ], + [ + 2077531, + 5829828 + ], + [ + 2077537, + 5829839 + ], + [ + 2077545, + 5829850 + ], + [ + 2077552, + 5829859 + ], + [ + 2077559, + 5829870 + ], + [ + 2077566, + 5829880 + ], + [ + 2077572, + 5829891 + ], + [ + 2077580, + 5829901 + ], + [ + 2077586, + 5829911 + ], + [ + 2077594, + 5829922 + ], + [ + 2077601, + 5829932 + ], + [ + 2077608, + 5829942 + ], + [ + 2077615, + 5829952 + ], + [ + 2077622, + 5829963 + ], + [ + 2077629, + 5829974 + ], + [ + 2077636, + 5829983 + ], + [ + 2077643, + 5829994 + ], + [ + 2077650, + 5830005 + ], + [ + 2077657, + 5830015 + ], + [ + 2077664, + 5830025 + ], + [ + 2077671, + 5830036 + ], + [ + 2077677, + 5830047 + ], + [ + 2077685, + 5830057 + ], + [ + 2077691, + 5830067 + ], + [ + 2077699, + 5830078 + ], + [ + 2077705, + 5830089 + ], + [ + 2077713, + 5830099 + ], + [ + 2077720, + 5830109 + ], + [ + 2077727, + 5830119 + ], + [ + 2077734, + 5830130 + ], + [ + 2077741, + 5830140 + ], + [ + 2077748, + 5830150 + ], + [ + 2077755, + 5830161 + ], + [ + 2077762, + 5830172 + ], + [ + 2077768, + 5830181 + ], + [ + 2077776, + 5830192 + ], + [ + 2077782, + 5830203 + ], + [ + 2077789, + 5830213 + ], + [ + 2077796, + 5830223 + ], + [ + 2077803, + 5830234 + ], + [ + 2077810, + 5830245 + ], + [ + 2077817, + 5830255 + ], + [ + 2077824, + 5830265 + ], + [ + 2077831, + 5830276 + ], + [ + 2077838, + 5830287 + ], + [ + 2077845, + 5830297 + ], + [ + 2077852, + 5830307 + ], + [ + 2077860, + 5830318 + ], + [ + 2077866, + 5830328 + ], + [ + 2077873, + 5830339 + ], + [ + 2077880, + 5830349 + ], + [ + 2077886, + 5830359 + ], + [ + 2077894, + 5830370 + ], + [ + 2077900, + 5830379 + ], + [ + 2077908, + 5830390 + ], + [ + 2077914, + 5830401 + ], + [ + 2077922, + 5830411 + ], + [ + 2077929, + 5830421 + ], + [ + 2077936, + 5830431 + ], + [ + 2077943, + 5830442 + ], + [ + 2077951, + 5830452 + ], + [ + 2077957, + 5830462 + ], + [ + 2077965, + 5830473 + ], + [ + 2077971, + 5830483 + ], + [ + 2077979, + 5830494 + ], + [ + 2077985, + 5830504 + ], + [ + 2077992, + 5830514 + ], + [ + 2077999, + 5830525 + ], + [ + 2078006, + 5830536 + ], + [ + 2078013, + 5830546 + ], + [ + 2078020, + 5830556 + ], + [ + 2078027, + 5830567 + ], + [ + 2078034, + 5830577 + ], + [ + 2078041, + 5830587 + ], + [ + 2078048, + 5830598 + ], + [ + 2078055, + 5830609 + ], + [ + 2078061, + 5830619 + ], + [ + 2078069, + 5830629 + ], + [ + 2078075, + 5830640 + ], + [ + 2078083, + 5830651 + ], + [ + 2078090, + 5830660 + ], + [ + 2078096, + 5830671 + ], + [ + 2078104, + 5830681 + ], + [ + 2078110, + 5830692 + ], + [ + 2078117, + 5830702 + ], + [ + 2078124, + 5830712 + ], + [ + 2078132, + 5830723 + ], + [ + 2078138, + 5830734 + ], + [ + 2078146, + 5830743 + ], + [ + 2078152, + 5830754 + ], + [ + 2078159, + 5830765 + ], + [ + 2078166, + 5830775 + ], + [ + 2078174, + 5830785 + ], + [ + 2078180, + 5830796 + ], + [ + 2078187, + 5830806 + ], + [ + 2078194, + 5830817 + ], + [ + 2078201, + 5830826 + ], + [ + 2078209, + 5830837 + ], + [ + 2078215, + 5830848 + ], + [ + 2078223, + 5830857 + ], + [ + 2078230, + 5830868 + ], + [ + 2078237, + 5830879 + ], + [ + 2078244, + 5830889 + ], + [ + 2078251, + 5830899 + ], + [ + 2078258, + 5830910 + ], + [ + 2078265, + 5830920 + ], + [ + 2078272, + 5830931 + ], + [ + 2078280, + 5830940 + ], + [ + 2078286, + 5830951 + ], + [ + 2078293, + 5830961 + ], + [ + 2078300, + 5830972 + ], + [ + 2078306, + 5830982 + ], + [ + 2078314, + 5830992 + ], + [ + 2078321, + 5831003 + ], + [ + 2078328, + 5831014 + ], + [ + 2078335, + 5831023 + ], + [ + 2078343, + 5831034 + ], + [ + 2078349, + 5831045 + ], + [ + 2078357, + 5831054 + ], + [ + 2078364, + 5831065 + ], + [ + 2078371, + 5831075 + ], + [ + 2078378, + 5831086 + ], + [ + 2078386, + 5831096 + ], + [ + 2078391, + 5831106 + ], + [ + 2078398, + 5831117 + ], + [ + 2078406, + 5831128 + ], + [ + 2078412, + 5831137 + ], + [ + 2078420, + 5831148 + ], + [ + 2078427, + 5831159 + ], + [ + 2078434, + 5831169 + ], + [ + 2078440, + 5831179 + ], + [ + 2078448, + 5831190 + ], + [ + 2078454, + 5831200 + ], + [ + 2078462, + 5831211 + ], + [ + 2078469, + 5831221 + ], + [ + 2078476, + 5831231 + ], + [ + 2078483, + 5831242 + ], + [ + 2078491, + 5831252 + ], + [ + 2078497, + 5831262 + ], + [ + 2078505, + 5831273 + ], + [ + 2078512, + 5831284 + ], + [ + 2078518, + 5831293 + ], + [ + 2078526, + 5831303 + ], + [ + 2078532, + 5831314 + ], + [ + 2078539, + 5831325 + ], + [ + 2078546, + 5831334 + ], + [ + 2078554, + 5831345 + ], + [ + 2078560, + 5831356 + ], + [ + 2078568, + 5831366 + ], + [ + 2078575, + 5831376 + ], + [ + 2078582, + 5831387 + ], + [ + 2078589, + 5831397 + ], + [ + 2078596, + 5831408 + ], + [ + 2078603, + 5831417 + ], + [ + 2078610, + 5831428 + ], + [ + 2078617, + 5831438 + ], + [ + 2078623, + 5831449 + ], + [ + 2078631, + 5831459 + ], + [ + 2078638, + 5831469 + ], + [ + 2078645, + 5831480 + ], + [ + 2078652, + 5831490 + ], + [ + 2078659, + 5831500 + ], + [ + 2078665, + 5831511 + ], + [ + 2078673, + 5831522 + ], + [ + 2078680, + 5831531 + ], + [ + 2078687, + 5831542 + ], + [ + 2078694, + 5831553 + ], + [ + 2078702, + 5831563 + ], + [ + 2078708, + 5831573 + ], + [ + 2078715, + 5831584 + ], + [ + 2078722, + 5831594 + ], + [ + 2078729, + 5831605 + ], + [ + 2078736, + 5831614 + ], + [ + 2078743, + 5831625 + ], + [ + 2078750, + 5831636 + ], + [ + 2078757, + 5831647 + ], + [ + 2078765, + 5831656 + ], + [ + 2078771, + 5831667 + ], + [ + 2078779, + 5831678 + ], + [ + 2078785, + 5831687 + ], + [ + 2078793, + 5831698 + ], + [ + 2078799, + 5831708 + ], + [ + 2078807, + 5831719 + ], + [ + 2078813, + 5831729 + ], + [ + 2078820, + 5831739 + ], + [ + 2078828, + 5831750 + ], + [ + 2078834, + 5831760 + ], + [ + 2078842, + 5831770 + ], + [ + 2078849, + 5831781 + ], + [ + 2078856, + 5831791 + ], + [ + 2078863, + 5831802 + ], + [ + 2078870, + 5831811 + ], + [ + 2078876, + 5831822 + ], + [ + 2078884, + 5831833 + ], + [ + 2078891, + 5831843 + ], + [ + 2078898, + 5831853 + ], + [ + 2078905, + 5831864 + ], + [ + 2078912, + 5831874 + ], + [ + 2078919, + 5831884 + ], + [ + 2078926, + 5831894 + ], + [ + 2078934, + 5831905 + ], + [ + 2078940, + 5831915 + ], + [ + 2078948, + 5831925 + ], + [ + 2078955, + 5831936 + ], + [ + 2078962, + 5831946 + ], + [ + 2078969, + 5831957 + ], + [ + 2078977, + 5831966 + ], + [ + 2078983, + 5831977 + ], + [ + 2078991, + 5831988 + ], + [ + 2078998, + 5831998 + ], + [ + 2079004, + 5832008 + ], + [ + 2079011, + 5832019 + ], + [ + 2079018, + 5832029 + ], + [ + 2079025, + 5832040 + ], + [ + 2079032, + 5832050 + ], + [ + 2079039, + 5832060 + ], + [ + 2079045, + 5832071 + ], + [ + 2079053, + 5832081 + ], + [ + 2079060, + 5832091 + ], + [ + 2079067, + 5832102 + ], + [ + 2079074, + 5832113 + ], + [ + 2079081, + 5832122 + ], + [ + 2079086, + 5832134 + ], + [ + 2079094, + 5832144 + ], + [ + 2079101, + 5832155 + ], + [ + 2079108, + 5832165 + ], + [ + 2079115, + 5832176 + ], + [ + 2079122, + 5832186 + ], + [ + 2079128, + 5832197 + ], + [ + 2079135, + 5832207 + ], + [ + 2079143, + 5832217 + ], + [ + 2079149, + 5832228 + ], + [ + 2079157, + 5832239 + ], + [ + 2079164, + 5832248 + ], + [ + 2079171, + 5832259 + ], + [ + 2079178, + 5832270 + ], + [ + 2079186, + 5832280 + ], + [ + 2079192, + 5832290 + ], + [ + 2079199, + 5832300 + ], + [ + 2079206, + 5832311 + ], + [ + 2079213, + 5832322 + ], + [ + 2079220, + 5832331 + ], + [ + 2079228, + 5832342 + ], + [ + 2079234, + 5832353 + ], + [ + 2079241, + 5832362 + ], + [ + 2079249, + 5832373 + ], + [ + 2079255, + 5832383 + ], + [ + 2079263, + 5832394 + ], + [ + 2079270, + 5832403 + ], + [ + 2079277, + 5832414 + ], + [ + 2079284, + 5832425 + ], + [ + 2079292, + 5832435 + ], + [ + 2079297, + 5832445 + ], + [ + 2079305, + 5832456 + ], + [ + 2079312, + 5832466 + ], + [ + 2079319, + 5832477 + ], + [ + 2079326, + 5832486 + ], + [ + 2079333, + 5832497 + ], + [ + 2079340, + 5832508 + ], + [ + 2079347, + 5832518 + ], + [ + 2079355, + 5832528 + ], + [ + 2079361, + 5832538 + ], + [ + 2079369, + 5832549 + ], + [ + 2079376, + 5832558 + ], + [ + 2079383, + 5832569 + ], + [ + 2079390, + 5832580 + ], + [ + 2079398, + 5832590 + ], + [ + 2079403, + 5832600 + ], + [ + 2079411, + 5832611 + ], + [ + 2079418, + 5832621 + ], + [ + 2079425, + 5832632 + ], + [ + 2079432, + 5832642 + ], + [ + 2079439, + 5832652 + ], + [ + 2079445, + 5832663 + ], + [ + 2079452, + 5832674 + ], + [ + 2079460, + 5832683 + ], + [ + 2079466, + 5832694 + ], + [ + 2079474, + 5832704 + ], + [ + 2079481, + 5832715 + ], + [ + 2079487, + 5832725 + ], + [ + 2079494, + 5832736 + ], + [ + 2079502, + 5832746 + ], + [ + 2079508, + 5832757 + ], + [ + 2079516, + 5832767 + ], + [ + 2079523, + 5832777 + ], + [ + 2079529, + 5832788 + ], + [ + 2079536, + 5832797 + ], + [ + 2079543, + 5832808 + ], + [ + 2079550, + 5832819 + ], + [ + 2079557, + 5832829 + ], + [ + 2079565, + 5832839 + ], + [ + 2079570, + 5832850 + ], + [ + 2079578, + 5832861 + ], + [ + 2079585, + 5832871 + ], + [ + 2079592, + 5832881 + ], + [ + 2079599, + 5832892 + ], + [ + 2079607, + 5832902 + ], + [ + 2079612, + 5832913 + ], + [ + 2079620, + 5832923 + ], + [ + 2079627, + 5832933 + ], + [ + 2079634, + 5832944 + ], + [ + 2079641, + 5832955 + ], + [ + 2079648, + 5832964 + ], + [ + 2079655, + 5832975 + ], + [ + 2079662, + 5832986 + ], + [ + 2079670, + 5832995 + ], + [ + 2079676, + 5833006 + ], + [ + 2079684, + 5833016 + ], + [ + 2079691, + 5833027 + ], + [ + 2079698, + 5833037 + ], + [ + 2079705, + 5833047 + ], + [ + 2079713, + 5833058 + ], + [ + 2079718, + 5833069 + ], + [ + 2079726, + 5833078 + ], + [ + 2079733, + 5833089 + ], + [ + 2079739, + 5833100 + ], + [ + 2079747, + 5833110 + ], + [ + 2079754, + 5833119 + ], + [ + 2079760, + 5833130 + ], + [ + 2079767, + 5833141 + ], + [ + 2079775, + 5833151 + ], + [ + 2079781, + 5833161 + ], + [ + 2079789, + 5833172 + ], + [ + 2079796, + 5833182 + ], + [ + 2079802, + 5833194 + ], + [ + 2079809, + 5833203 + ], + [ + 2079817, + 5833214 + ], + [ + 2079822, + 5833225 + ], + [ + 2079830, + 5833236 + ], + [ + 2079837, + 5833245 + ], + [ + 2079843, + 5833257 + ], + [ + 2079850, + 5833267 + ], + [ + 2079857, + 5833277 + ], + [ + 2079864, + 5833288 + ], + [ + 2079871, + 5833298 + ], + [ + 2079879, + 5833308 + ], + [ + 2079884, + 5833320 + ], + [ + 2079892, + 5833329 + ], + [ + 2079900, + 5833339 + ], + [ + 2079906, + 5833350 + ], + [ + 2079913, + 5833360 + ], + [ + 2079921, + 5833370 + ], + [ + 2079928, + 5833381 + ], + [ + 2079936, + 5833391 + ], + [ + 2079943, + 5833401 + ], + [ + 2079950, + 5833412 + ], + [ + 2079957, + 5833422 + ], + [ + 2079964, + 5833432 + ], + [ + 2079971, + 5833442 + ], + [ + 2079978, + 5833453 + ], + [ + 2079986, + 5833463 + ], + [ + 2079991, + 5833474 + ], + [ + 2080000, + 5833483 + ], + [ + 2080007, + 5833494 + ], + [ + 2080013, + 5833505 + ], + [ + 2080021, + 5833514 + ], + [ + 2080029, + 5833524 + ], + [ + 2080034, + 5833536 + ], + [ + 2080043, + 5833546 + ], + [ + 2080050, + 5833555 + ], + [ + 2080056, + 5833567 + ], + [ + 2080063, + 5833577 + ], + [ + 2080070, + 5833587 + ], + [ + 2080076, + 5833597 + ], + [ + 2080083, + 5833608 + ], + [ + 2080091, + 5833618 + ], + [ + 2080096, + 5833630 + ], + [ + 2080104, + 5833639 + ], + [ + 2080111, + 5833649 + ], + [ + 2080118, + 5833661 + ], + [ + 2080125, + 5833671 + ], + [ + 2080133, + 5833680 + ], + [ + 2080139, + 5833691 + ], + [ + 2080147, + 5833702 + ], + [ + 2080154, + 5833711 + ], + [ + 2080160, + 5833722 + ], + [ + 2080168, + 5833733 + ], + [ + 2080176, + 5833743 + ], + [ + 2080182, + 5833753 + ], + [ + 2080189, + 5833763 + ], + [ + 2080197, + 5833774 + ], + [ + 2080202, + 5833785 + ], + [ + 2080211, + 5833794 + ], + [ + 2080218, + 5833805 + ], + [ + 2080224, + 5833816 + ], + [ + 2080231, + 5833826 + ], + [ + 2080240, + 5833835 + ], + [ + 2080245, + 5833846 + ], + [ + 2080254, + 5833857 + ], + [ + 2080261, + 5833866 + ], + [ + 2080267, + 5833877 + ], + [ + 2080275, + 5833887 + ], + [ + 2080282, + 5833897 + ], + [ + 2080289, + 5833907 + ], + [ + 2080296, + 5833918 + ], + [ + 2080304, + 5833928 + ], + [ + 2080309, + 5833939 + ], + [ + 2080318, + 5833949 + ], + [ + 2080325, + 5833959 + ], + [ + 2080331, + 5833970 + ], + [ + 2080339, + 5833980 + ], + [ + 2080347, + 5833990 + ], + [ + 2080352, + 5834001 + ], + [ + 2080359, + 5834011 + ], + [ + 2080368, + 5834021 + ], + [ + 2080373, + 5834032 + ], + [ + 2080381, + 5834043 + ], + [ + 2080388, + 5834053 + ], + [ + 2080394, + 5834063 + ], + [ + 2080401, + 5834074 + ], + [ + 2080410, + 5834084 + ], + [ + 2080415, + 5834095 + ], + [ + 2080423, + 5834105 + ], + [ + 2080430, + 5834115 + ], + [ + 2080437, + 5834126 + ], + [ + 2080444, + 5834136 + ], + [ + 2080452, + 5834146 + ], + [ + 2080458, + 5834157 + ], + [ + 2080465, + 5834167 + ], + [ + 2080473, + 5834177 + ], + [ + 2080479, + 5834187 + ], + [ + 2080487, + 5834198 + ], + [ + 2080494, + 5834208 + ], + [ + 2080501, + 5834219 + ], + [ + 2080508, + 5834229 + ], + [ + 2080516, + 5834239 + ], + [ + 2080521, + 5834250 + ], + [ + 2080529, + 5834260 + ], + [ + 2080536, + 5834270 + ], + [ + 2080543, + 5834281 + ], + [ + 2080550, + 5834291 + ], + [ + 2080558, + 5834301 + ], + [ + 2080564, + 5834311 + ], + [ + 2080571, + 5834322 + ], + [ + 2080579, + 5834332 + ], + [ + 2080585, + 5834342 + ], + [ + 2080593, + 5834353 + ], + [ + 2080600, + 5834363 + ], + [ + 2080607, + 5834374 + ], + [ + 2080614, + 5834383 + ], + [ + 2080622, + 5834394 + ], + [ + 2080628, + 5834405 + ], + [ + 2080636, + 5834414 + ], + [ + 2080643, + 5834424 + ], + [ + 2080650, + 5834435 + ], + [ + 2080657, + 5834446 + ], + [ + 2080664, + 5834455 + ], + [ + 2080671, + 5834466 + ], + [ + 2080678, + 5834476 + ], + [ + 2080686, + 5834487 + ], + [ + 2080691, + 5834497 + ], + [ + 2080700, + 5834507 + ], + [ + 2080707, + 5834518 + ], + [ + 2080713, + 5834529 + ], + [ + 2080720, + 5834538 + ], + [ + 2080728, + 5834549 + ], + [ + 2080733, + 5834560 + ], + [ + 2080741, + 5834570 + ], + [ + 2080748, + 5834580 + ], + [ + 2080755, + 5834591 + ], + [ + 2080762, + 5834601 + ], + [ + 2080769, + 5834611 + ], + [ + 2080775, + 5834622 + ], + [ + 2080782, + 5834633 + ], + [ + 2080790, + 5834643 + ], + [ + 2080796, + 5834654 + ], + [ + 2080804, + 5834664 + ], + [ + 2080811, + 5834674 + ], + [ + 2080817, + 5834686 + ], + [ + 2080824, + 5834695 + ], + [ + 2080832, + 5834706 + ], + [ + 2080837, + 5834717 + ], + [ + 2080845, + 5834727 + ], + [ + 2080852, + 5834737 + ], + [ + 2080859, + 5834748 + ], + [ + 2080866, + 5834758 + ], + [ + 2080873, + 5834768 + ], + [ + 2080880, + 5834778 + ], + [ + 2080887, + 5834789 + ], + [ + 2080895, + 5834799 + ], + [ + 2080901, + 5834810 + ], + [ + 2080909, + 5834820 + ], + [ + 2080916, + 5834830 + ], + [ + 2080923, + 5834841 + ], + [ + 2080930, + 5834851 + ], + [ + 2080938, + 5834860 + ], + [ + 2080945, + 5834871 + ], + [ + 2080953, + 5834881 + ], + [ + 2080960, + 5834891 + ], + [ + 2080967, + 5834901 + ], + [ + 2080975, + 5834911 + ], + [ + 2080982, + 5834921 + ], + [ + 2080990, + 5834931 + ], + [ + 2080997, + 5834942 + ], + [ + 2081005, + 5834952 + ], + [ + 2081011, + 5834962 + ], + [ + 2081019, + 5834972 + ], + [ + 2081026, + 5834982 + ], + [ + 2081033, + 5834994 + ], + [ + 2081041, + 5835003 + ], + [ + 2081048, + 5835013 + ], + [ + 2081054, + 5835024 + ], + [ + 2081061, + 5835034 + ], + [ + 2081069, + 5835044 + ], + [ + 2081074, + 5835055 + ], + [ + 2081083, + 5835065 + ], + [ + 2081090, + 5835075 + ], + [ + 2081096, + 5835086 + ], + [ + 2081104, + 5835096 + ], + [ + 2081112, + 5835106 + ], + [ + 2081118, + 5835116 + ], + [ + 2081126, + 5835127 + ], + [ + 2081133, + 5835137 + ], + [ + 2081140, + 5835148 + ], + [ + 2081147, + 5835157 + ], + [ + 2081154, + 5835168 + ], + [ + 2081161, + 5835178 + ], + [ + 2081168, + 5835189 + ], + [ + 2081176, + 5835198 + ], + [ + 2081182, + 5835209 + ], + [ + 2081191, + 5835219 + ], + [ + 2081198, + 5835229 + ], + [ + 2081205, + 5835239 + ], + [ + 2081212, + 5835250 + ], + [ + 2081220, + 5835260 + ], + [ + 2081226, + 5835270 + ], + [ + 2081233, + 5835280 + ], + [ + 2081242, + 5835290 + ], + [ + 2081248, + 5835301 + ], + [ + 2081256, + 5835311 + ], + [ + 2081263, + 5835321 + ], + [ + 2081270, + 5835331 + ], + [ + 2081277, + 5835341 + ], + [ + 2081285, + 5835351 + ], + [ + 2081291, + 5835362 + ], + [ + 2081299, + 5835373 + ], + [ + 2081306, + 5835382 + ], + [ + 2081313, + 5835393 + ], + [ + 2081320, + 5835404 + ], + [ + 2081327, + 5835414 + ], + [ + 2081334, + 5835424 + ], + [ + 2081341, + 5835434 + ], + [ + 2081349, + 5835445 + ], + [ + 2081355, + 5835456 + ], + [ + 2081363, + 5835465 + ], + [ + 2081370, + 5835476 + ], + [ + 2081376, + 5835487 + ], + [ + 2081383, + 5835497 + ], + [ + 2081391, + 5835506 + ], + [ + 2081397, + 5835518 + ], + [ + 2081405, + 5835528 + ], + [ + 2081412, + 5835538 + ], + [ + 2081419, + 5835548 + ], + [ + 2081426, + 5835559 + ], + [ + 2081433, + 5835569 + ], + [ + 2081439, + 5835579 + ], + [ + 2081446, + 5835590 + ], + [ + 2081454, + 5835600 + ], + [ + 2081460, + 5835611 + ], + [ + 2081468, + 5835621 + ], + [ + 2081475, + 5835631 + ], + [ + 2081484, + 5835641 + ], + [ + 2081491, + 5835652 + ], + [ + 2081499, + 5835661 + ], + [ + 2081507, + 5835670 + ], + [ + 2081515, + 5835681 + ], + [ + 2081522, + 5835690 + ], + [ + 2081530, + 5835700 + ], + [ + 2081538, + 5835710 + ], + [ + 2081545, + 5835719 + ], + [ + 2081555, + 5835729 + ], + [ + 2081562, + 5835739 + ], + [ + 2081570, + 5835749 + ], + [ + 2081578, + 5835758 + ], + [ + 2081586, + 5835768 + ], + [ + 2081594, + 5835779 + ], + [ + 2081602, + 5835787 + ], + [ + 2081610, + 5835798 + ], + [ + 2081617, + 5835808 + ], + [ + 2081626, + 5835816 + ], + [ + 2081633, + 5835827 + ], + [ + 2081642, + 5835837 + ], + [ + 2081649, + 5835846 + ], + [ + 2081656, + 5835856 + ], + [ + 2081664, + 5835867 + ], + [ + 2081671, + 5835877 + ], + [ + 2081679, + 5835886 + ], + [ + 2081687, + 5835897 + ], + [ + 2081695, + 5835906 + ], + [ + 2081702, + 5835916 + ], + [ + 2081710, + 5835926 + ], + [ + 2081718, + 5835936 + ], + [ + 2081726, + 5835946 + ], + [ + 2081733, + 5835956 + ], + [ + 2081741, + 5835966 + ], + [ + 2081749, + 5835976 + ], + [ + 2081756, + 5835986 + ], + [ + 2081764, + 5835996 + ], + [ + 2081771, + 5836006 + ], + [ + 2081779, + 5836017 + ], + [ + 2081786, + 5836026 + ], + [ + 2081794, + 5836037 + ], + [ + 2081801, + 5836047 + ], + [ + 2081809, + 5836057 + ], + [ + 2081815, + 5836067 + ], + [ + 2081822, + 5836078 + ], + [ + 2081831, + 5836088 + ], + [ + 2081837, + 5836097 + ], + [ + 2081845, + 5836108 + ], + [ + 2081852, + 5836118 + ], + [ + 2081860, + 5836129 + ], + [ + 2081866, + 5836138 + ], + [ + 2081874, + 5836149 + ], + [ + 2081881, + 5836159 + ], + [ + 2081889, + 5836169 + ], + [ + 2081895, + 5836179 + ], + [ + 2081903, + 5836190 + ], + [ + 2081910, + 5836201 + ], + [ + 2081916, + 5836210 + ], + [ + 2081924, + 5836221 + ], + [ + 2081930, + 5836232 + ], + [ + 2081937, + 5836242 + ], + [ + 2081944, + 5836252 + ], + [ + 2081951, + 5836263 + ], + [ + 2081957, + 5836274 + ], + [ + 2081965, + 5836285 + ], + [ + 2081971, + 5836295 + ], + [ + 2081978, + 5836305 + ], + [ + 2081985, + 5836316 + ], + [ + 2081992, + 5836327 + ], + [ + 2081999, + 5836336 + ], + [ + 2082006, + 5836347 + ], + [ + 2082012, + 5836358 + ], + [ + 2082020, + 5836369 + ], + [ + 2082026, + 5836379 + ], + [ + 2082032, + 5836390 + ], + [ + 2082040, + 5836400 + ], + [ + 2082046, + 5836411 + ], + [ + 2082053, + 5836421 + ], + [ + 2082060, + 5836431 + ], + [ + 2082067, + 5836443 + ], + [ + 2082073, + 5836454 + ], + [ + 2082081, + 5836463 + ], + [ + 2082087, + 5836474 + ], + [ + 2082094, + 5836485 + ], + [ + 2082101, + 5836495 + ], + [ + 2082108, + 5836505 + ], + [ + 2082114, + 5836516 + ], + [ + 2082122, + 5836526 + ], + [ + 2082127, + 5836538 + ], + [ + 2082134, + 5836548 + ], + [ + 2082142, + 5836558 + ], + [ + 2082148, + 5836569 + ], + [ + 2082154, + 5836580 + ], + [ + 2082161, + 5836589 + ], + [ + 2082168, + 5836600 + ], + [ + 2082174, + 5836611 + ], + [ + 2082182, + 5836622 + ], + [ + 2082188, + 5836632 + ], + [ + 2082195, + 5836643 + ], + [ + 2082202, + 5836653 + ], + [ + 2082209, + 5836665 + ], + [ + 2082215, + 5836675 + ], + [ + 2082223, + 5836685 + ], + [ + 2082228, + 5836696 + ], + [ + 2082235, + 5836708 + ], + [ + 2082242, + 5836717 + ], + [ + 2082249, + 5836728 + ], + [ + 2082255, + 5836739 + ], + [ + 2082263, + 5836749 + ], + [ + 2082268, + 5836760 + ], + [ + 2082275, + 5836771 + ], + [ + 2082282, + 5836781 + ], + [ + 2082288, + 5836792 + ], + [ + 2082294, + 5836803 + ], + [ + 2082302, + 5836812 + ], + [ + 2082308, + 5836824 + ], + [ + 2082314, + 5836835 + ], + [ + 2082323, + 5836843 + ], + [ + 2082329, + 5836854 + ], + [ + 2082335, + 5836866 + ], + [ + 2082344, + 5836875 + ], + [ + 2082350, + 5836885 + ], + [ + 2082356, + 5836896 + ], + [ + 2082366, + 5836906 + ], + [ + 2082371, + 5836917 + ], + [ + 2082378, + 5836927 + ], + [ + 2082387, + 5836936 + ], + [ + 2082393, + 5836948 + ], + [ + 2082399, + 5836959 + ], + [ + 2082408, + 5836967 + ], + [ + 2082415, + 5836978 + ], + [ + 2082420, + 5836990 + ], + [ + 2082430, + 5836998 + ], + [ + 2082436, + 5837009 + ], + [ + 2082442, + 5837020 + ], + [ + 2082451, + 5837030 + ], + [ + 2082457, + 5837040 + ], + [ + 2082463, + 5837051 + ], + [ + 2082472, + 5837061 + ], + [ + 2082478, + 5837072 + ], + [ + 2082483, + 5837082 + ], + [ + 2082492, + 5837092 + ], + [ + 2082498, + 5837103 + ], + [ + 2082505, + 5837115 + ], + [ + 2082512, + 5837123 + ], + [ + 2082519, + 5837134 + ], + [ + 2082525, + 5837146 + ], + [ + 2082534, + 5837155 + ], + [ + 2082540, + 5837166 + ], + [ + 2082546, + 5837177 + ], + [ + 2082555, + 5837186 + ], + [ + 2082561, + 5837197 + ], + [ + 2082567, + 5837208 + ], + [ + 2082577, + 5837217 + ], + [ + 2082582, + 5837228 + ], + [ + 2082589, + 5837240 + ], + [ + 2082597, + 5837248 + ], + [ + 2082603, + 5837259 + ], + [ + 2082609, + 5837270 + ], + [ + 2082618, + 5837279 + ], + [ + 2082624, + 5837290 + ], + [ + 2082630, + 5837301 + ], + [ + 2082639, + 5837311 + ], + [ + 2082645, + 5837321 + ], + [ + 2082651, + 5837332 + ], + [ + 2082659, + 5837342 + ], + [ + 2082666, + 5837353 + ], + [ + 2082672, + 5837364 + ], + [ + 2082681, + 5837373 + ], + [ + 2082687, + 5837384 + ], + [ + 2082693, + 5837395 + ], + [ + 2082701, + 5837404 + ], + [ + 2082707, + 5837415 + ], + [ + 2082714, + 5837427 + ], + [ + 2082722, + 5837436 + ], + [ + 2082728, + 5837446 + ], + [ + 2082734, + 5837458 + ], + [ + 2082743, + 5837467 + ], + [ + 2082749, + 5837479 + ], + [ + 2082755, + 5837489 + ], + [ + 2082764, + 5837499 + ], + [ + 2082770, + 5837510 + ], + [ + 2082776, + 5837521 + ], + [ + 2082785, + 5837530 + ], + [ + 2082791, + 5837541 + ], + [ + 2082797, + 5837552 + ], + [ + 2082806, + 5837561 + ], + [ + 2082811, + 5837572 + ], + [ + 2082818, + 5837583 + ], + [ + 2082826, + 5837592 + ], + [ + 2082833, + 5837603 + ], + [ + 2082838, + 5837614 + ], + [ + 2082848, + 5837623 + ], + [ + 2082854, + 5837634 + ], + [ + 2082860, + 5837644 + ], + [ + 2082869, + 5837654 + ], + [ + 2082876, + 5837665 + ], + [ + 2082881, + 5837676 + ], + [ + 2082891, + 5837685 + ], + [ + 2082897, + 5837696 + ], + [ + 2082903, + 5837707 + ], + [ + 2082912, + 5837716 + ], + [ + 2082917, + 5837727 + ], + [ + 2082924, + 5837738 + ], + [ + 2082932, + 5837748 + ], + [ + 2082939, + 5837759 + ], + [ + 2082944, + 5837769 + ], + [ + 2082954, + 5837778 + ], + [ + 2082959, + 5837789 + ], + [ + 2082966, + 5837801 + ], + [ + 2082974, + 5837810 + ], + [ + 2082981, + 5837821 + ], + [ + 2082986, + 5837832 + ], + [ + 2082995, + 5837841 + ], + [ + 2083001, + 5837852 + ], + [ + 2083007, + 5837863 + ], + [ + 2083015, + 5837873 + ], + [ + 2083021, + 5837884 + ], + [ + 2083027, + 5837895 + ], + [ + 2083036, + 5837904 + ], + [ + 2083042, + 5837916 + ], + [ + 2083048, + 5837926 + ], + [ + 2083057, + 5837935 + ], + [ + 2083063, + 5837947 + ], + [ + 2083069, + 5837958 + ], + [ + 2083078, + 5837966 + ], + [ + 2083085, + 5837978 + ], + [ + 2083090, + 5837989 + ], + [ + 2083099, + 5837998 + ], + [ + 2083105, + 5838008 + ], + [ + 2083111, + 5838020 + ], + [ + 2083119, + 5838029 + ], + [ + 2083125, + 5838041 + ], + [ + 2083132, + 5838051 + ], + [ + 2083140, + 5838061 + ], + [ + 2083147, + 5838072 + ], + [ + 2083153, + 5838083 + ], + [ + 2083162, + 5838091 + ], + [ + 2083168, + 5838103 + ], + [ + 2083174, + 5838114 + ], + [ + 2083183, + 5838122 + ], + [ + 2083190, + 5838133 + ], + [ + 2083195, + 5838145 + ], + [ + 2083205, + 5838154 + ], + [ + 2083210, + 5838164 + ], + [ + 2083217, + 5838175 + ], + [ + 2083225, + 5838185 + ], + [ + 2083231, + 5838196 + ], + [ + 2083237, + 5838206 + ], + [ + 2083246, + 5838216 + ], + [ + 2083252, + 5838227 + ], + [ + 2083258, + 5838239 + ], + [ + 2083267, + 5838247 + ], + [ + 2083272, + 5838258 + ], + [ + 2083279, + 5838270 + ], + [ + 2083287, + 5838279 + ], + [ + 2083293, + 5838289 + ], + [ + 2083299, + 5838301 + ], + [ + 2083308, + 5838310 + ], + [ + 2083314, + 5838321 + ], + [ + 2083320, + 5838332 + ], + [ + 2083329, + 5838341 + ], + [ + 2083335, + 5838353 + ], + [ + 2083341, + 5838364 + ], + [ + 2083349, + 5838372 + ], + [ + 2083356, + 5838384 + ], + [ + 2083361, + 5838395 + ], + [ + 2083371, + 5838404 + ], + [ + 2083376, + 5838415 + ], + [ + 2083383, + 5838426 + ], + [ + 2083391, + 5838436 + ], + [ + 2083397, + 5838447 + ], + [ + 2083403, + 5838457 + ], + [ + 2083413, + 5838466 + ], + [ + 2083419, + 5838478 + ], + [ + 2083425, + 5838489 + ], + [ + 2083433, + 5838497 + ], + [ + 2083439, + 5838509 + ], + [ + 2083446, + 5838520 + ], + [ + 2083454, + 5838528 + ], + [ + 2083460, + 5838540 + ], + [ + 2083466, + 5838551 + ], + [ + 2083475, + 5838561 + ], + [ + 2083480, + 5838571 + ], + [ + 2083487, + 5838582 + ], + [ + 2083495, + 5838592 + ], + [ + 2083502, + 5838603 + ], + [ + 2083507, + 5838613 + ], + [ + 2083517, + 5838623 + ], + [ + 2083522, + 5838634 + ], + [ + 2083529, + 5838645 + ], + [ + 2083538, + 5838654 + ], + [ + 2083543, + 5838665 + ], + [ + 2083550, + 5838676 + ], + [ + 2083558, + 5838686 + ], + [ + 2083565, + 5838696 + ], + [ + 2083570, + 5838708 + ], + [ + 2083579, + 5838717 + ], + [ + 2083585, + 5838728 + ], + [ + 2083592, + 5838739 + ], + [ + 2083600, + 5838748 + ], + [ + 2083607, + 5838759 + ], + [ + 2083612, + 5838771 + ], + [ + 2083622, + 5838779 + ], + [ + 2083627, + 5838790 + ], + [ + 2083634, + 5838802 + ], + [ + 2083643, + 5838810 + ], + [ + 2083648, + 5838821 + ], + [ + 2083655, + 5838832 + ], + [ + 2083664, + 5838841 + ], + [ + 2083671, + 5838852 + ], + [ + 2083676, + 5838863 + ], + [ + 2083686, + 5838872 + ], + [ + 2083691, + 5838883 + ], + [ + 2083698, + 5838894 + ], + [ + 2083706, + 5838903 + ], + [ + 2083713, + 5838915 + ], + [ + 2083718, + 5838926 + ], + [ + 2083727, + 5838934 + ], + [ + 2083732, + 5838946 + ], + [ + 2083739, + 5838957 + ], + [ + 2083747, + 5838967 + ], + [ + 2083753, + 5838977 + ], + [ + 2083760, + 5838988 + ], + [ + 2083768, + 5838997 + ], + [ + 2083775, + 5839008 + ], + [ + 2083781, + 5839019 + ], + [ + 2083791, + 5839028 + ], + [ + 2083796, + 5839039 + ], + [ + 2083803, + 5839049 + ], + [ + 2083812, + 5839059 + ], + [ + 2083818, + 5839070 + ], + [ + 2083824, + 5839081 + ], + [ + 2083834, + 5839089 + ], + [ + 2083839, + 5839101 + ], + [ + 2083846, + 5839112 + ], + [ + 2083854, + 5839121 + ], + [ + 2083860, + 5839131 + ], + [ + 2083867, + 5839143 + ], + [ + 2083875, + 5839152 + ], + [ + 2083882, + 5839162 + ], + [ + 2083888, + 5839174 + ], + [ + 2083897, + 5839183 + ], + [ + 2083903, + 5839194 + ], + [ + 2083909, + 5839205 + ], + [ + 2083918, + 5839214 + ], + [ + 2083925, + 5839225 + ], + [ + 2083930, + 5839236 + ], + [ + 2083939, + 5839244 + ], + [ + 2083946, + 5839255 + ], + [ + 2083951, + 5839267 + ], + [ + 2083961, + 5839276 + ], + [ + 2083967, + 5839286 + ], + [ + 2083973, + 5839297 + ], + [ + 2083981, + 5839307 + ], + [ + 2083988, + 5839318 + ], + [ + 2083994, + 5839328 + ], + [ + 2084003, + 5839338 + ], + [ + 2084009, + 5839349 + ], + [ + 2084015, + 5839360 + ], + [ + 2084024, + 5839369 + ], + [ + 2084030, + 5839380 + ], + [ + 2084036, + 5839391 + ], + [ + 2084045, + 5839399 + ], + [ + 2084051, + 5839411 + ], + [ + 2084057, + 5839422 + ], + [ + 2084067, + 5839431 + ], + [ + 2084073, + 5839441 + ], + [ + 2084079, + 5839453 + ], + [ + 2084088, + 5839462 + ], + [ + 2084094, + 5839473 + ], + [ + 2084100, + 5839483 + ], + [ + 2084109, + 5839493 + ], + [ + 2084115, + 5839504 + ], + [ + 2084122, + 5839515 + ], + [ + 2084130, + 5839524 + ], + [ + 2084137, + 5839535 + ], + [ + 2084142, + 5839546 + ], + [ + 2084151, + 5839555 + ], + [ + 2084157, + 5839566 + ], + [ + 2084163, + 5839577 + ], + [ + 2084173, + 5839586 + ], + [ + 2084179, + 5839596 + ], + [ + 2084185, + 5839607 + ], + [ + 2084194, + 5839616 + ], + [ + 2084201, + 5839628 + ], + [ + 2084207, + 5839638 + ], + [ + 2084217, + 5839647 + ], + [ + 2084223, + 5839658 + ], + [ + 2084230, + 5839669 + ], + [ + 2084238, + 5839677 + ], + [ + 2084244, + 5839689 + ], + [ + 2084250, + 5839700 + ], + [ + 2084259, + 5839708 + ], + [ + 2084266, + 5839719 + ], + [ + 2084272, + 5839730 + ], + [ + 2084281, + 5839740 + ], + [ + 2084286, + 5839750 + ], + [ + 2084293, + 5839762 + ], + [ + 2084302, + 5839772 + ], + [ + 2084308, + 5839783 + ], + [ + 2084314, + 5839793 + ], + [ + 2084323, + 5839803 + ], + [ + 2084329, + 5839814 + ], + [ + 2084335, + 5839825 + ], + [ + 2084343, + 5839834 + ], + [ + 2084349, + 5839845 + ], + [ + 2084355, + 5839856 + ], + [ + 2084364, + 5839866 + ], + [ + 2084371, + 5839876 + ], + [ + 2084376, + 5839887 + ], + [ + 2084386, + 5839896 + ], + [ + 2084391, + 5839908 + ], + [ + 2084398, + 5839918 + ], + [ + 2084406, + 5839927 + ], + [ + 2084413, + 5839939 + ], + [ + 2084418, + 5839950 + ], + [ + 2084428, + 5839958 + ], + [ + 2084434, + 5839970 + ], + [ + 2084440, + 5839981 + ], + [ + 2084449, + 5839989 + ], + [ + 2084455, + 5840000 + ], + [ + 2084462, + 5840011 + ], + [ + 2084470, + 5840020 + ], + [ + 2084477, + 5840031 + ], + [ + 2084483, + 5840042 + ], + [ + 2084492, + 5840051 + ], + [ + 2084498, + 5840062 + ], + [ + 2084505, + 5840073 + ], + [ + 2084513, + 5840082 + ], + [ + 2084520, + 5840093 + ], + [ + 2084526, + 5840104 + ], + [ + 2084535, + 5840113 + ], + [ + 2084541, + 5840124 + ], + [ + 2084547, + 5840135 + ], + [ + 2084557, + 5840144 + ], + [ + 2084562, + 5840155 + ], + [ + 2084569, + 5840166 + ], + [ + 2084578, + 5840175 + ], + [ + 2084585, + 5840185 + ], + [ + 2084590, + 5840197 + ], + [ + 2084600, + 5840206 + ], + [ + 2084605, + 5840217 + ], + [ + 2084612, + 5840227 + ], + [ + 2084621, + 5840237 + ], + [ + 2084627, + 5840248 + ], + [ + 2084633, + 5840259 + ], + [ + 2084641, + 5840267 + ], + [ + 2084647, + 5840279 + ], + [ + 2084653, + 5840290 + ], + [ + 2084662, + 5840299 + ], + [ + 2084668, + 5840310 + ], + [ + 2084674, + 5840321 + ], + [ + 2084683, + 5840331 + ], + [ + 2084690, + 5840341 + ], + [ + 2084695, + 5840352 + ], + [ + 2084705, + 5840361 + ], + [ + 2084710, + 5840373 + ], + [ + 2084717, + 5840383 + ], + [ + 2084725, + 5840392 + ], + [ + 2084732, + 5840403 + ], + [ + 2084737, + 5840415 + ], + [ + 2084746, + 5840423 + ], + [ + 2084753, + 5840434 + ], + [ + 2084758, + 5840446 + ], + [ + 2084768, + 5840455 + ], + [ + 2084773, + 5840466 + ], + [ + 2084780, + 5840477 + ], + [ + 2084788, + 5840486 + ], + [ + 2084795, + 5840498 + ], + [ + 2084800, + 5840508 + ], + [ + 2084810, + 5840517 + ], + [ + 2084815, + 5840529 + ], + [ + 2084822, + 5840540 + ], + [ + 2084830, + 5840549 + ], + [ + 2084837, + 5840560 + ], + [ + 2084842, + 5840571 + ], + [ + 2084851, + 5840579 + ], + [ + 2084858, + 5840591 + ], + [ + 2084863, + 5840602 + ], + [ + 2084873, + 5840612 + ], + [ + 2084878, + 5840622 + ], + [ + 2084885, + 5840633 + ], + [ + 2084893, + 5840643 + ], + [ + 2084899, + 5840654 + ], + [ + 2084905, + 5840665 + ], + [ + 2084914, + 5840674 + ], + [ + 2084920, + 5840685 + ], + [ + 2084926, + 5840697 + ], + [ + 2084934, + 5840705 + ], + [ + 2084941, + 5840717 + ], + [ + 2084946, + 5840728 + ], + [ + 2084955, + 5840737 + ], + [ + 2084961, + 5840748 + ], + [ + 2084967, + 5840759 + ], + [ + 2084977, + 5840768 + ], + [ + 2084982, + 5840780 + ], + [ + 2084989, + 5840790 + ], + [ + 2084997, + 5840799 + ], + [ + 2085004, + 5840811 + ], + [ + 2085009, + 5840822 + ], + [ + 2085019, + 5840830 + ], + [ + 2085024, + 5840842 + ], + [ + 2085031, + 5840853 + ], + [ + 2085039, + 5840861 + ], + [ + 2085046, + 5840872 + ], + [ + 2085051, + 5840884 + ], + [ + 2085060, + 5840893 + ], + [ + 2085066, + 5840903 + ], + [ + 2085072, + 5840914 + ], + [ + 2085082, + 5840924 + ], + [ + 2085087, + 5840935 + ], + [ + 2085094, + 5840946 + ], + [ + 2085103, + 5840955 + ], + [ + 2085109, + 5840966 + ], + [ + 2085115, + 5840977 + ], + [ + 2085124, + 5840986 + ], + [ + 2085130, + 5840997 + ], + [ + 2085137, + 5841008 + ], + [ + 2085145, + 5841018 + ], + [ + 2085152, + 5841028 + ], + [ + 2085157, + 5841039 + ], + [ + 2085165, + 5841049 + ], + [ + 2085172, + 5841060 + ], + [ + 2085177, + 5841070 + ], + [ + 2085187, + 5841080 + ], + [ + 2085192, + 5841091 + ], + [ + 2085199, + 5841102 + ], + [ + 2085207, + 5841111 + ], + [ + 2085214, + 5841122 + ], + [ + 2085219, + 5841133 + ], + [ + 2085229, + 5841141 + ], + [ + 2085235, + 5841153 + ], + [ + 2085241, + 5841164 + ], + [ + 2085250, + 5841173 + ], + [ + 2085257, + 5841183 + ], + [ + 2085262, + 5841194 + ], + [ + 2085272, + 5841203 + ], + [ + 2085278, + 5841215 + ], + [ + 2085284, + 5841225 + ], + [ + 2085293, + 5841234 + ], + [ + 2085299, + 5841246 + ], + [ + 2085305, + 5841257 + ], + [ + 2085313, + 5841265 + ], + [ + 2085320, + 5841277 + ], + [ + 2085326, + 5841288 + ], + [ + 2085335, + 5841296 + ], + [ + 2085340, + 5841307 + ], + [ + 2085347, + 5841319 + ], + [ + 2085355, + 5841328 + ], + [ + 2085361, + 5841338 + ], + [ + 2085368, + 5841349 + ], + [ + 2085377, + 5841359 + ], + [ + 2085383, + 5841370 + ], + [ + 2085389, + 5841380 + ], + [ + 2085399, + 5841390 + ], + [ + 2085404, + 5841401 + ], + [ + 2085411, + 5841412 + ], + [ + 2085419, + 5841421 + ], + [ + 2085426, + 5841432 + ], + [ + 2085431, + 5841443 + ], + [ + 2085441, + 5841453 + ], + [ + 2085446, + 5841463 + ], + [ + 2085453, + 5841475 + ], + [ + 2085461, + 5841484 + ], + [ + 2085468, + 5841496 + ], + [ + 2085473, + 5841506 + ], + [ + 2085482, + 5841515 + ], + [ + 2085488, + 5841526 + ], + [ + 2085494, + 5841538 + ], + [ + 2085503, + 5841546 + ], + [ + 2085509, + 5841557 + ], + [ + 2085515, + 5841568 + ], + [ + 2085524, + 5841577 + ], + [ + 2085530, + 5841588 + ], + [ + 2085536, + 5841599 + ], + [ + 2085546, + 5841608 + ], + [ + 2085551, + 5841619 + ], + [ + 2085558, + 5841630 + ], + [ + 2085566, + 5841639 + ], + [ + 2085571, + 5841651 + ], + [ + 2085578, + 5841661 + ], + [ + 2085587, + 5841670 + ], + [ + 2085593, + 5841682 + ], + [ + 2085599, + 5841693 + ], + [ + 2085609, + 5841702 + ], + [ + 2085614, + 5841713 + ], + [ + 2085621, + 5841724 + ], + [ + 2085630, + 5841733 + ], + [ + 2085636, + 5841743 + ], + [ + 2085642, + 5841755 + ], + [ + 2085652, + 5841764 + ], + [ + 2085657, + 5841775 + ], + [ + 2085664, + 5841785 + ], + [ + 2085672, + 5841795 + ], + [ + 2085678, + 5841806 + ], + [ + 2085684, + 5841818 + ], + [ + 2085692, + 5841826 + ], + [ + 2085699, + 5841837 + ], + [ + 2085704, + 5841849 + ], + [ + 2085713, + 5841857 + ], + [ + 2085719, + 5841869 + ], + [ + 2085726, + 5841880 + ], + [ + 2085734, + 5841889 + ], + [ + 2085740, + 5841900 + ], + [ + 2085746, + 5841911 + ], + [ + 2085755, + 5841921 + ], + [ + 2085761, + 5841932 + ], + [ + 2085767, + 5841942 + ], + [ + 2085776, + 5841951 + ], + [ + 2085782, + 5841963 + ], + [ + 2085788, + 5841974 + ], + [ + 2085797, + 5841982 + ], + [ + 2085804, + 5841994 + ], + [ + 2085809, + 5842005 + ], + [ + 2085819, + 5842014 + ], + [ + 2085825, + 5842024 + ], + [ + 2085831, + 5842036 + ], + [ + 2085839, + 5842045 + ], + [ + 2085846, + 5842056 + ], + [ + 2085851, + 5842067 + ], + [ + 2085861, + 5842076 + ], + [ + 2085867, + 5842087 + ], + [ + 2085873, + 5842098 + ], + [ + 2085881, + 5842107 + ], + [ + 2085887, + 5842118 + ], + [ + 2085893, + 5842130 + ], + [ + 2085902, + 5842138 + ], + [ + 2085908, + 5842149 + ], + [ + 2085914, + 5842160 + ], + [ + 2085924, + 5842170 + ], + [ + 2085929, + 5842180 + ], + [ + 2085936, + 5842191 + ], + [ + 2085946, + 5842200 + ], + [ + 2085952, + 5842211 + ], + [ + 2085958, + 5842222 + ], + [ + 2085967, + 5842230 + ], + [ + 2085974, + 5842242 + ], + [ + 2085979, + 5842253 + ], + [ + 2085989, + 5842261 + ], + [ + 2085994, + 5842273 + ], + [ + 2086001, + 5842284 + ], + [ + 2086009, + 5842292 + ], + [ + 2086015, + 5842304 + ], + [ + 2086021, + 5842315 + ], + [ + 2086030, + 5842325 + ], + [ + 2086035, + 5842335 + ], + [ + 2086042, + 5842346 + ], + [ + 2086050, + 5842356 + ], + [ + 2086057, + 5842367 + ], + [ + 2086062, + 5842378 + ], + [ + 2086071, + 5842387 + ], + [ + 2086077, + 5842399 + ], + [ + 2086083, + 5842410 + ], + [ + 2086091, + 5842419 + ], + [ + 2086097, + 5842430 + ], + [ + 2086103, + 5842441 + ], + [ + 2086111, + 5842451 + ], + [ + 2086117, + 5842461 + ], + [ + 2086123, + 5842473 + ], + [ + 2086132, + 5842482 + ], + [ + 2086137, + 5842494 + ], + [ + 2086144, + 5842504 + ], + [ + 2086153, + 5842514 + ], + [ + 2086159, + 5842525 + ], + [ + 2086165, + 5842536 + ], + [ + 2086175, + 5842544 + ], + [ + 2086180, + 5842556 + ], + [ + 2086187, + 5842567 + ], + [ + 2086196, + 5842576 + ], + [ + 2086201, + 5842586 + ], + [ + 2086208, + 5842597 + ], + [ + 2086216, + 5842607 + ], + [ + 2086223, + 5842618 + ], + [ + 2086228, + 5842629 + ], + [ + 2086238, + 5842638 + ], + [ + 2086243, + 5842649 + ], + [ + 2086250, + 5842660 + ], + [ + 2086258, + 5842669 + ], + [ + 2086265, + 5842680 + ], + [ + 2086271, + 5842691 + ], + [ + 2086280, + 5842699 + ], + [ + 2086286, + 5842711 + ], + [ + 2086293, + 5842722 + ], + [ + 2086301, + 5842731 + ], + [ + 2086307, + 5842741 + ], + [ + 2086314, + 5842752 + ], + [ + 2086323, + 5842762 + ], + [ + 2086329, + 5842773 + ], + [ + 2086335, + 5842783 + ], + [ + 2086345, + 5842792 + ], + [ + 2086351, + 5842803 + ], + [ + 2086357, + 5842814 + ], + [ + 2086366, + 5842823 + ], + [ + 2086373, + 5842834 + ], + [ + 2086378, + 5842845 + ], + [ + 2086387, + 5842854 + ], + [ + 2086394, + 5842865 + ], + [ + 2086399, + 5842876 + ], + [ + 2086408, + 5842886 + ], + [ + 2086414, + 5842896 + ], + [ + 2086421, + 5842907 + ], + [ + 2086429, + 5842917 + ], + [ + 2086436, + 5842928 + ], + [ + 2086442, + 5842938 + ], + [ + 2086451, + 5842947 + ], + [ + 2086457, + 5842959 + ], + [ + 2086464, + 5842970 + ], + [ + 2086472, + 5842978 + ], + [ + 2086479, + 5842989 + ], + [ + 2086485, + 5843001 + ], + [ + 2086493, + 5843010 + ], + [ + 2086499, + 5843021 + ], + [ + 2086505, + 5843032 + ], + [ + 2086514, + 5843041 + ], + [ + 2086520, + 5843052 + ], + [ + 2086526, + 5843063 + ], + [ + 2086535, + 5843072 + ], + [ + 2086542, + 5843083 + ], + [ + 2086547, + 5843094 + ], + [ + 2086557, + 5843103 + ], + [ + 2086562, + 5843115 + ], + [ + 2086569, + 5843126 + ], + [ + 2086577, + 5843134 + ], + [ + 2086583, + 5843146 + ], + [ + 2086589, + 5843157 + ], + [ + 2086598, + 5843167 + ], + [ + 2086604, + 5843177 + ], + [ + 2086610, + 5843188 + ], + [ + 2086619, + 5843197 + ], + [ + 2086624, + 5843209 + ], + [ + 2086631, + 5843219 + ], + [ + 2086639, + 5843228 + ], + [ + 2086646, + 5843239 + ], + [ + 2086652, + 5843251 + ], + [ + 2086661, + 5843259 + ], + [ + 2086666, + 5843271 + ], + [ + 2086673, + 5843282 + ], + [ + 2086681, + 5843291 + ], + [ + 2086687, + 5843301 + ], + [ + 2086694, + 5843313 + ], + [ + 2086702, + 5843322 + ], + [ + 2086709, + 5843332 + ], + [ + 2086715, + 5843344 + ], + [ + 2086724, + 5843353 + ], + [ + 2086730, + 5843364 + ], + [ + 2086736, + 5843375 + ], + [ + 2086745, + 5843384 + ], + [ + 2086752, + 5843395 + ], + [ + 2086758, + 5843406 + ], + [ + 2086768, + 5843415 + ], + [ + 2086773, + 5843426 + ], + [ + 2086780, + 5843437 + ], + [ + 2086788, + 5843446 + ], + [ + 2086795, + 5843457 + ], + [ + 2086801, + 5843468 + ], + [ + 2086809, + 5843477 + ], + [ + 2086816, + 5843488 + ], + [ + 2086821, + 5843499 + ], + [ + 2086831, + 5843508 + ], + [ + 2086836, + 5843519 + ], + [ + 2086843, + 5843531 + ], + [ + 2086851, + 5843539 + ], + [ + 2086858, + 5843550 + ], + [ + 2086863, + 5843562 + ], + [ + 2086872, + 5843570 + ], + [ + 2086878, + 5843581 + ], + [ + 2086885, + 5843593 + ], + [ + 2086892, + 5843602 + ], + [ + 2086898, + 5843612 + ], + [ + 2086905, + 5843623 + ], + [ + 2086912, + 5843633 + ], + [ + 2086919, + 5843644 + ], + [ + 2086925, + 5843655 + ], + [ + 2086934, + 5843664 + ], + [ + 2086940, + 5843676 + ], + [ + 2086947, + 5843687 + ], + [ + 2086955, + 5843695 + ], + [ + 2086962, + 5843707 + ], + [ + 2086968, + 5843718 + ], + [ + 2086977, + 5843727 + ], + [ + 2086982, + 5843738 + ], + [ + 2086989, + 5843749 + ], + [ + 2086997, + 5843759 + ], + [ + 2087002, + 5843770 + ], + [ + 2087009, + 5843781 + ], + [ + 2087017, + 5843790 + ], + [ + 2087023, + 5843801 + ], + [ + 2087029, + 5843813 + ], + [ + 2087039, + 5843821 + ], + [ + 2087044, + 5843832 + ], + [ + 2087051, + 5843843 + ], + [ + 2087060, + 5843851 + ], + [ + 2087066, + 5843862 + ], + [ + 2087072, + 5843874 + ], + [ + 2087082, + 5843883 + ], + [ + 2087087, + 5843893 + ], + [ + 2087094, + 5843904 + ], + [ + 2087102, + 5843914 + ], + [ + 2087108, + 5843925 + ], + [ + 2087115, + 5843935 + ], + [ + 2087123, + 5843945 + ], + [ + 2087129, + 5843956 + ], + [ + 2087135, + 5843967 + ], + [ + 2087144, + 5843976 + ], + [ + 2087150, + 5843987 + ], + [ + 2087156, + 5843999 + ], + [ + 2087165, + 5844008 + ], + [ + 2087171, + 5844018 + ], + [ + 2087177, + 5844030 + ], + [ + 2087186, + 5844039 + ], + [ + 2087192, + 5844051 + ], + [ + 2087198, + 5844061 + ], + [ + 2087208, + 5844070 + ], + [ + 2087213, + 5844081 + ], + [ + 2087220, + 5844092 + ], + [ + 2087228, + 5844101 + ], + [ + 2087235, + 5844112 + ], + [ + 2087241, + 5844123 + ], + [ + 2087251, + 5844131 + ], + [ + 2087256, + 5844142 + ], + [ + 2087263, + 5844154 + ], + [ + 2087272, + 5844163 + ], + [ + 2087278, + 5844173 + ], + [ + 2087284, + 5844184 + ], + [ + 2087293, + 5844194 + ], + [ + 2087299, + 5844205 + ], + [ + 2087304, + 5844215 + ], + [ + 2087314, + 5844224 + ], + [ + 2087319, + 5844236 + ], + [ + 2087326, + 5844247 + ], + [ + 2087334, + 5844255 + ], + [ + 2087341, + 5844266 + ], + [ + 2087347, + 5844277 + ], + [ + 2087356, + 5844286 + ], + [ + 2087362, + 5844297 + ], + [ + 2087369, + 5844308 + ], + [ + 2087377, + 5844318 + ], + [ + 2087384, + 5844328 + ], + [ + 2087390, + 5844339 + ], + [ + 2087398, + 5844349 + ], + [ + 2087405, + 5844360 + ], + [ + 2087410, + 5844370 + ], + [ + 2087419, + 5844380 + ], + [ + 2087425, + 5844391 + ], + [ + 2087432, + 5844402 + ], + [ + 2087440, + 5844411 + ], + [ + 2087447, + 5844422 + ], + [ + 2087452, + 5844433 + ], + [ + 2087462, + 5844443 + ], + [ + 2087468, + 5844453 + ], + [ + 2087474, + 5844464 + ], + [ + 2087483, + 5844473 + ], + [ + 2087490, + 5844485 + ], + [ + 2087495, + 5844495 + ], + [ + 2087503, + 5844504 + ], + [ + 2087510, + 5844516 + ], + [ + 2087516, + 5844527 + ], + [ + 2087524, + 5844535 + ], + [ + 2087530, + 5844546 + ], + [ + 2087537, + 5844558 + ], + [ + 2087545, + 5844566 + ], + [ + 2087552, + 5844578 + ], + [ + 2087557, + 5844589 + ], + [ + 2087567, + 5844598 + ], + [ + 2087573, + 5844608 + ], + [ + 2087580, + 5844620 + ], + [ + 2087588, + 5844629 + ], + [ + 2087594, + 5844640 + ], + [ + 2087600, + 5844651 + ], + [ + 2087608, + 5844660 + ], + [ + 2087615, + 5844672 + ], + [ + 2087620, + 5844683 + ], + [ + 2087629, + 5844692 + ], + [ + 2087635, + 5844703 + ], + [ + 2087642, + 5844714 + ], + [ + 2087650, + 5844724 + ], + [ + 2087657, + 5844734 + ], + [ + 2087663, + 5844745 + ], + [ + 2087672, + 5844754 + ], + [ + 2087678, + 5844765 + ], + [ + 2087685, + 5844776 + ], + [ + 2087693, + 5844785 + ], + [ + 2087700, + 5844796 + ], + [ + 2087705, + 5844807 + ], + [ + 2087713, + 5844816 + ], + [ + 2087720, + 5844827 + ], + [ + 2087726, + 5844838 + ], + [ + 2087734, + 5844847 + ], + [ + 2087740, + 5844858 + ], + [ + 2087747, + 5844869 + ], + [ + 2087755, + 5844879 + ], + [ + 2087762, + 5844889 + ], + [ + 2087768, + 5844900 + ], + [ + 2087777, + 5844909 + ], + [ + 2087783, + 5844921 + ], + [ + 2087790, + 5844931 + ], + [ + 2087798, + 5844940 + ], + [ + 2087804, + 5844951 + ], + [ + 2087811, + 5844962 + ], + [ + 2087819, + 5844971 + ], + [ + 2087826, + 5844982 + ], + [ + 2087831, + 5844993 + ], + [ + 2087842, + 5845002 + ], + [ + 2087847, + 5845013 + ], + [ + 2087854, + 5845024 + ], + [ + 2087863, + 5845033 + ], + [ + 2087869, + 5845043 + ], + [ + 2087875, + 5845055 + ], + [ + 2087885, + 5845064 + ], + [ + 2087890, + 5845075 + ], + [ + 2087897, + 5845085 + ], + [ + 2087905, + 5845095 + ], + [ + 2087911, + 5845106 + ], + [ + 2087918, + 5845117 + ], + [ + 2087926, + 5845126 + ], + [ + 2087933, + 5845137 + ], + [ + 2087939, + 5845148 + ], + [ + 2087948, + 5845158 + ], + [ + 2087954, + 5845168 + ], + [ + 2087960, + 5845179 + ], + [ + 2087969, + 5845188 + ], + [ + 2087976, + 5845199 + ], + [ + 2087981, + 5845210 + ], + [ + 2087990, + 5845220 + ], + [ + 2087996, + 5845231 + ], + [ + 2088003, + 5845242 + ], + [ + 2088011, + 5845250 + ], + [ + 2088017, + 5845261 + ], + [ + 2088023, + 5845273 + ], + [ + 2088031, + 5845281 + ], + [ + 2088038, + 5845293 + ], + [ + 2088044, + 5845304 + ], + [ + 2088053, + 5845313 + ], + [ + 2088058, + 5845324 + ], + [ + 2088065, + 5845335 + ], + [ + 2088072, + 5845345 + ], + [ + 2088079, + 5845356 + ], + [ + 2088084, + 5845368 + ], + [ + 2088094, + 5845376 + ], + [ + 2088099, + 5845387 + ], + [ + 2088106, + 5845398 + ], + [ + 2088115, + 5845407 + ], + [ + 2088120, + 5845418 + ], + [ + 2088127, + 5845429 + ], + [ + 2088136, + 5845438 + ], + [ + 2088143, + 5845449 + ], + [ + 2088148, + 5845460 + ], + [ + 2088158, + 5845469 + ], + [ + 2088163, + 5845480 + ], + [ + 2088170, + 5845491 + ], + [ + 2088179, + 5845500 + ], + [ + 2088185, + 5845511 + ], + [ + 2088191, + 5845522 + ], + [ + 2088200, + 5845531 + ], + [ + 2088205, + 5845542 + ], + [ + 2088211, + 5845553 + ], + [ + 2088220, + 5845562 + ], + [ + 2088226, + 5845573 + ], + [ + 2088232, + 5845585 + ], + [ + 2088240, + 5845594 + ], + [ + 2088247, + 5845605 + ], + [ + 2088252, + 5845616 + ], + [ + 2088262, + 5845625 + ], + [ + 2088268, + 5845636 + ], + [ + 2088275, + 5845646 + ], + [ + 2088284, + 5845655 + ], + [ + 2088290, + 5845667 + ], + [ + 2088296, + 5845678 + ], + [ + 2088305, + 5845686 + ], + [ + 2088312, + 5845697 + ], + [ + 2088317, + 5845709 + ], + [ + 2088327, + 5845717 + ], + [ + 2088333, + 5845728 + ], + [ + 2088340, + 5845740 + ], + [ + 2088348, + 5845749 + ], + [ + 2088355, + 5845759 + ], + [ + 2088360, + 5845770 + ], + [ + 2088370, + 5845780 + ], + [ + 2088375, + 5845791 + ], + [ + 2088382, + 5845801 + ], + [ + 2088390, + 5845810 + ], + [ + 2088397, + 5845821 + ], + [ + 2088403, + 5845833 + ], + [ + 2088412, + 5845841 + ], + [ + 2088418, + 5845852 + ], + [ + 2088424, + 5845863 + ], + [ + 2088434, + 5845872 + ], + [ + 2088440, + 5845883 + ], + [ + 2088446, + 5845894 + ], + [ + 2088454, + 5845903 + ], + [ + 2088461, + 5845914 + ], + [ + 2088467, + 5845925 + ], + [ + 2088476, + 5845934 + ], + [ + 2088482, + 5845946 + ], + [ + 2088489, + 5845956 + ], + [ + 2088497, + 5845965 + ], + [ + 2088503, + 5845977 + ], + [ + 2088509, + 5845988 + ], + [ + 2088517, + 5845997 + ], + [ + 2088524, + 5846008 + ], + [ + 2088530, + 5846019 + ], + [ + 2088538, + 5846029 + ], + [ + 2088544, + 5846039 + ], + [ + 2088551, + 5846050 + ], + [ + 2088558, + 5846060 + ], + [ + 2088565, + 5846071 + ], + [ + 2088571, + 5846081 + ], + [ + 2088580, + 5846090 + ], + [ + 2088586, + 5846102 + ], + [ + 2088593, + 5846113 + ], + [ + 2088601, + 5846121 + ], + [ + 2088607, + 5846132 + ], + [ + 2088614, + 5846144 + ], + [ + 2088622, + 5846153 + ], + [ + 2088628, + 5846163 + ], + [ + 2088634, + 5846175 + ], + [ + 2088644, + 5846184 + ], + [ + 2088650, + 5846194 + ], + [ + 2088657, + 5846206 + ], + [ + 2088665, + 5846215 + ], + [ + 2088672, + 5846226 + ], + [ + 2088678, + 5846237 + ], + [ + 2088687, + 5846246 + ], + [ + 2088693, + 5846257 + ], + [ + 2088700, + 5846268 + ], + [ + 2088707, + 5846277 + ], + [ + 2088713, + 5846288 + ], + [ + 2088720, + 5846299 + ], + [ + 2088728, + 5846309 + ], + [ + 2088735, + 5846319 + ], + [ + 2088740, + 5846330 + ], + [ + 2088749, + 5846340 + ], + [ + 2088755, + 5846351 + ], + [ + 2088762, + 5846361 + ], + [ + 2088770, + 5846371 + ], + [ + 2088776, + 5846382 + ], + [ + 2088782, + 5846393 + ], + [ + 2088791, + 5846402 + ], + [ + 2088797, + 5846413 + ], + [ + 2088803, + 5846424 + ], + [ + 2088812, + 5846434 + ], + [ + 2088818, + 5846444 + ], + [ + 2088824, + 5846455 + ], + [ + 2088833, + 5846464 + ], + [ + 2088840, + 5846474 + ], + [ + 2088845, + 5846485 + ], + [ + 2088856, + 5846494 + ], + [ + 2088861, + 5846506 + ], + [ + 2088868, + 5846516 + ], + [ + 2088877, + 5846525 + ], + [ + 2088883, + 5846537 + ], + [ + 2088889, + 5846548 + ], + [ + 2088897, + 5846556 + ], + [ + 2088904, + 5846567 + ], + [ + 2088910, + 5846579 + ], + [ + 2088919, + 5846588 + ], + [ + 2088925, + 5846598 + ], + [ + 2088931, + 5846610 + ], + [ + 2088939, + 5846619 + ], + [ + 2088946, + 5846630 + ], + [ + 2088952, + 5846640 + ], + [ + 2088961, + 5846650 + ], + [ + 2088967, + 5846661 + ], + [ + 2088974, + 5846672 + ], + [ + 2088982, + 5846681 + ], + [ + 2088988, + 5846692 + ], + [ + 2088994, + 5846704 + ], + [ + 2089002, + 5846712 + ], + [ + 2089009, + 5846723 + ], + [ + 2089015, + 5846734 + ], + [ + 2089024, + 5846744 + ], + [ + 2089030, + 5846754 + ], + [ + 2089037, + 5846765 + ], + [ + 2089046, + 5846775 + ], + [ + 2089052, + 5846786 + ], + [ + 2089058, + 5846796 + ], + [ + 2089068, + 5846805 + ], + [ + 2089073, + 5846817 + ], + [ + 2089080, + 5846828 + ], + [ + 2089088, + 5846836 + ], + [ + 2089095, + 5846848 + ], + [ + 2089101, + 5846859 + ], + [ + 2089109, + 5846867 + ], + [ + 2089115, + 5846878 + ], + [ + 2089121, + 5846890 + ], + [ + 2089130, + 5846899 + ], + [ + 2089136, + 5846910 + ], + [ + 2089142, + 5846921 + ], + [ + 2089151, + 5846930 + ], + [ + 2089157, + 5846942 + ], + [ + 2089163, + 5846952 + ], + [ + 2089173, + 5846961 + ], + [ + 2089178, + 5846972 + ], + [ + 2089185, + 5846984 + ], + [ + 2089194, + 5846992 + ], + [ + 2089200, + 5847003 + ], + [ + 2089206, + 5847015 + ], + [ + 2089214, + 5847024 + ], + [ + 2089221, + 5847034 + ], + [ + 2089226, + 5847046 + ], + [ + 2089236, + 5847055 + ], + [ + 2089242, + 5847066 + ], + [ + 2089248, + 5847076 + ], + [ + 2089256, + 5847086 + ], + [ + 2089263, + 5847097 + ], + [ + 2089268, + 5847108 + ], + [ + 2089277, + 5847117 + ], + [ + 2089283, + 5847128 + ], + [ + 2089290, + 5847139 + ], + [ + 2089298, + 5847148 + ], + [ + 2089305, + 5847159 + ], + [ + 2089310, + 5847170 + ], + [ + 2089318, + 5847180 + ], + [ + 2089325, + 5847190 + ], + [ + 2089330, + 5847202 + ], + [ + 2089340, + 5847211 + ], + [ + 2089346, + 5847222 + ], + [ + 2089352, + 5847233 + ], + [ + 2089360, + 5847242 + ], + [ + 2089367, + 5847254 + ], + [ + 2089372, + 5847265 + ], + [ + 2089382, + 5847273 + ], + [ + 2089388, + 5847284 + ], + [ + 2089394, + 5847296 + ], + [ + 2089403, + 5847305 + ], + [ + 2089409, + 5847315 + ], + [ + 2089415, + 5847327 + ], + [ + 2089424, + 5847336 + ], + [ + 2089431, + 5847347 + ], + [ + 2089436, + 5847357 + ], + [ + 2089446, + 5847367 + ], + [ + 2089451, + 5847378 + ], + [ + 2089458, + 5847389 + ], + [ + 2089466, + 5847398 + ], + [ + 2089473, + 5847409 + ], + [ + 2089479, + 5847420 + ], + [ + 2089488, + 5847429 + ], + [ + 2089494, + 5847440 + ], + [ + 2089500, + 5847451 + ], + [ + 2089509, + 5847460 + ], + [ + 2089515, + 5847471 + ], + [ + 2089521, + 5847482 + ], + [ + 2089530, + 5847491 + ], + [ + 2089536, + 5847502 + ], + [ + 2089542, + 5847513 + ], + [ + 2089552, + 5847522 + ], + [ + 2089557, + 5847533 + ], + [ + 2089564, + 5847544 + ], + [ + 2089573, + 5847553 + ], + [ + 2089579, + 5847564 + ], + [ + 2089585, + 5847575 + ], + [ + 2089594, + 5847584 + ], + [ + 2089600, + 5847594 + ], + [ + 2089607, + 5847606 + ], + [ + 2089615, + 5847615 + ], + [ + 2089621, + 5847626 + ], + [ + 2089627, + 5847636 + ], + [ + 2089636, + 5847646 + ], + [ + 2089642, + 5847657 + ], + [ + 2089648, + 5847668 + ], + [ + 2089658, + 5847677 + ], + [ + 2089663, + 5847688 + ], + [ + 2089670, + 5847699 + ], + [ + 2089678, + 5847707 + ], + [ + 2089685, + 5847719 + ], + [ + 2089691, + 5847730 + ], + [ + 2089699, + 5847739 + ], + [ + 2089706, + 5847749 + ], + [ + 2089713, + 5847761 + ], + [ + 2089721, + 5847770 + ], + [ + 2089727, + 5847781 + ], + [ + 2089733, + 5847792 + ], + [ + 2089741, + 5847801 + ], + [ + 2089748, + 5847812 + ], + [ + 2089754, + 5847824 + ], + [ + 2089763, + 5847832 + ], + [ + 2089769, + 5847843 + ], + [ + 2089775, + 5847855 + ], + [ + 2089784, + 5847863 + ], + [ + 2089791, + 5847874 + ], + [ + 2089796, + 5847885 + ], + [ + 2089805, + 5847895 + ], + [ + 2089812, + 5847905 + ], + [ + 2089817, + 5847916 + ], + [ + 2089827, + 5847926 + ], + [ + 2089832, + 5847937 + ], + [ + 2089839, + 5847947 + ], + [ + 2089848, + 5847957 + ], + [ + 2089854, + 5847968 + ], + [ + 2089860, + 5847979 + ], + [ + 2089869, + 5847988 + ], + [ + 2089875, + 5847999 + ], + [ + 2089881, + 5848010 + ], + [ + 2089889, + 5848020 + ], + [ + 2089896, + 5848030 + ], + [ + 2089901, + 5848041 + ], + [ + 2089910, + 5848051 + ], + [ + 2089916, + 5848062 + ], + [ + 2089922, + 5848072 + ], + [ + 2089931, + 5848082 + ], + [ + 2089937, + 5848093 + ], + [ + 2089944, + 5848104 + ], + [ + 2089953, + 5848112 + ], + [ + 2089959, + 5848123 + ], + [ + 2089965, + 5848135 + ], + [ + 2089975, + 5848143 + ], + [ + 2089980, + 5848154 + ], + [ + 2089987, + 5848165 + ], + [ + 2089997, + 5848174 + ], + [ + 2090002, + 5848184 + ], + [ + 2090009, + 5848196 + ], + [ + 2090017, + 5848205 + ], + [ + 2090024, + 5848216 + ], + [ + 2090030, + 5848227 + ], + [ + 2090039, + 5848236 + ], + [ + 2090045, + 5848247 + ], + [ + 2090051, + 5848259 + ], + [ + 2090060, + 5848267 + ], + [ + 2090066, + 5848278 + ], + [ + 2090072, + 5848289 + ], + [ + 2090081, + 5848298 + ], + [ + 2090087, + 5848309 + ], + [ + 2090094, + 5848321 + ], + [ + 2090102, + 5848330 + ], + [ + 2090108, + 5848340 + ], + [ + 2090114, + 5848352 + ], + [ + 2090123, + 5848361 + ], + [ + 2090130, + 5848372 + ], + [ + 2090135, + 5848383 + ], + [ + 2090144, + 5848392 + ], + [ + 2090150, + 5848403 + ], + [ + 2090156, + 5848415 + ], + [ + 2090164, + 5848423 + ], + [ + 2090171, + 5848435 + ], + [ + 2090177, + 5848446 + ], + [ + 2090186, + 5848455 + ], + [ + 2090192, + 5848465 + ], + [ + 2090198, + 5848477 + ], + [ + 2090208, + 5848485 + ], + [ + 2090213, + 5848497 + ], + [ + 2090220, + 5848507 + ], + [ + 2090229, + 5848516 + ], + [ + 2090236, + 5848527 + ], + [ + 2090241, + 5848539 + ], + [ + 2090251, + 5848547 + ], + [ + 2090256, + 5848558 + ], + [ + 2090263, + 5848569 + ], + [ + 2090271, + 5848578 + ], + [ + 2090278, + 5848589 + ], + [ + 2090284, + 5848601 + ], + [ + 2090293, + 5848610 + ], + [ + 2090299, + 5848620 + ], + [ + 2090305, + 5848632 + ], + [ + 2090314, + 5848641 + ], + [ + 2090319, + 5848652 + ], + [ + 2090326, + 5848662 + ], + [ + 2090334, + 5848671 + ], + [ + 2090341, + 5848683 + ], + [ + 2090347, + 5848694 + ], + [ + 2090356, + 5848703 + ], + [ + 2090362, + 5848714 + ], + [ + 2090368, + 5848725 + ], + [ + 2090376, + 5848735 + ], + [ + 2090383, + 5848746 + ], + [ + 2090388, + 5848757 + ], + [ + 2090398, + 5848766 + ], + [ + 2090403, + 5848778 + ], + [ + 2090410, + 5848788 + ], + [ + 2090418, + 5848798 + ], + [ + 2090423, + 5848809 + ], + [ + 2090430, + 5848820 + ], + [ + 2090438, + 5848829 + ], + [ + 2090444, + 5848841 + ], + [ + 2090449, + 5848852 + ], + [ + 2090459, + 5848861 + ], + [ + 2090465, + 5848871 + ], + [ + 2090471, + 5848882 + ], + [ + 2090480, + 5848892 + ], + [ + 2090487, + 5848902 + ], + [ + 2090492, + 5848913 + ], + [ + 2090502, + 5848922 + ], + [ + 2090508, + 5848934 + ], + [ + 2090514, + 5848944 + ], + [ + 2090522, + 5848953 + ], + [ + 2090528, + 5848964 + ], + [ + 2090534, + 5848976 + ], + [ + 2090544, + 5848984 + ], + [ + 2090550, + 5848995 + ], + [ + 2090556, + 5849006 + ], + [ + 2090566, + 5849015 + ], + [ + 2090571, + 5849025 + ], + [ + 2090578, + 5849037 + ], + [ + 2090587, + 5849046 + ], + [ + 2090594, + 5849057 + ], + [ + 2090599, + 5849067 + ], + [ + 2090608, + 5849076 + ], + [ + 2090614, + 5849088 + ], + [ + 2090620, + 5849099 + ], + [ + 2090629, + 5849107 + ], + [ + 2090635, + 5849118 + ], + [ + 2090642, + 5849130 + ], + [ + 2090650, + 5849138 + ], + [ + 2090657, + 5849150 + ], + [ + 2090662, + 5849161 + ], + [ + 2090672, + 5849171 + ], + [ + 2090677, + 5849181 + ], + [ + 2090684, + 5849192 + ], + [ + 2090692, + 5849202 + ], + [ + 2090699, + 5849213 + ], + [ + 2090704, + 5849224 + ], + [ + 2090712, + 5849233 + ], + [ + 2090719, + 5849245 + ], + [ + 2090724, + 5849256 + ], + [ + 2090734, + 5849264 + ], + [ + 2090740, + 5849275 + ], + [ + 2090746, + 5849287 + ], + [ + 2090756, + 5849295 + ], + [ + 2090762, + 5849306 + ], + [ + 2090768, + 5849317 + ], + [ + 2090777, + 5849327 + ], + [ + 2090783, + 5849337 + ], + [ + 2090789, + 5849348 + ], + [ + 2090797, + 5849358 + ], + [ + 2090804, + 5849369 + ], + [ + 2090809, + 5849381 + ], + [ + 2090818, + 5849389 + ], + [ + 2090824, + 5849400 + ], + [ + 2090830, + 5849412 + ], + [ + 2090839, + 5849420 + ], + [ + 2090845, + 5849431 + ], + [ + 2090851, + 5849442 + ], + [ + 2090861, + 5849451 + ], + [ + 2090867, + 5849462 + ], + [ + 2090873, + 5849473 + ], + [ + 2090883, + 5849482 + ], + [ + 2090888, + 5849493 + ], + [ + 2090895, + 5849503 + ], + [ + 2090904, + 5849513 + ], + [ + 2090910, + 5849524 + ], + [ + 2090916, + 5849535 + ], + [ + 2090924, + 5849544 + ], + [ + 2090931, + 5849556 + ], + [ + 2090936, + 5849567 + ], + [ + 2090945, + 5849576 + ], + [ + 2090951, + 5849587 + ], + [ + 2090957, + 5849598 + ], + [ + 2090965, + 5849608 + ], + [ + 2090972, + 5849619 + ], + [ + 2090978, + 5849629 + ], + [ + 2090987, + 5849639 + ], + [ + 2090992, + 5849650 + ], + [ + 2090999, + 5849661 + ], + [ + 2091007, + 5849670 + ], + [ + 2091014, + 5849681 + ], + [ + 2091019, + 5849692 + ], + [ + 2091028, + 5849701 + ], + [ + 2091034, + 5849712 + ], + [ + 2091039, + 5849723 + ], + [ + 2091049, + 5849733 + ], + [ + 2091054, + 5849743 + ], + [ + 2091061, + 5849754 + ], + [ + 2091069, + 5849764 + ], + [ + 2091075, + 5849775 + ], + [ + 2091081, + 5849785 + ], + [ + 2091092, + 5849794 + ], + [ + 2091097, + 5849805 + ], + [ + 2091103, + 5849816 + ], + [ + 2091113, + 5849824 + ], + [ + 2091119, + 5849836 + ], + [ + 2091125, + 5849847 + ], + [ + 2091134, + 5849855 + ], + [ + 2091141, + 5849866 + ], + [ + 2091146, + 5849878 + ], + [ + 2091156, + 5849887 + ], + [ + 2091162, + 5849897 + ], + [ + 2091168, + 5849908 + ], + [ + 2091177, + 5849918 + ], + [ + 2091183, + 5849929 + ], + [ + 2091189, + 5849939 + ], + [ + 2091198, + 5849949 + ], + [ + 2091204, + 5849960 + ], + [ + 2091211, + 5849971 + ], + [ + 2091219, + 5849979 + ], + [ + 2091225, + 5849991 + ], + [ + 2091231, + 5850002 + ], + [ + 2091240, + 5850011 + ], + [ + 2091247, + 5850021 + ], + [ + 2091252, + 5850033 + ], + [ + 2091261, + 5850042 + ], + [ + 2091267, + 5850054 + ], + [ + 2091273, + 5850064 + ], + [ + 2091282, + 5850074 + ], + [ + 2091288, + 5850085 + ], + [ + 2091294, + 5850096 + ], + [ + 2091303, + 5850105 + ], + [ + 2091308, + 5850117 + ], + [ + 2091315, + 5850128 + ], + [ + 2091323, + 5850137 + ], + [ + 2091330, + 5850148 + ], + [ + 2091335, + 5850159 + ], + [ + 2091344, + 5850169 + ], + [ + 2091350, + 5850180 + ], + [ + 2091356, + 5850191 + ], + [ + 2091366, + 5850200 + ], + [ + 2091371, + 5850211 + ], + [ + 2091378, + 5850223 + ], + [ + 2091386, + 5850231 + ], + [ + 2091392, + 5850243 + ], + [ + 2091398, + 5850254 + ], + [ + 2091408, + 5850262 + ], + [ + 2091413, + 5850274 + ], + [ + 2091420, + 5850285 + ], + [ + 2091429, + 5850295 + ], + [ + 2091435, + 5850305 + ], + [ + 2091441, + 5850316 + ], + [ + 2091449, + 5850325 + ], + [ + 2091456, + 5850337 + ], + [ + 2091461, + 5850347 + ], + [ + 2091471, + 5850356 + ], + [ + 2091477, + 5850368 + ], + [ + 2091484, + 5850379 + ], + [ + 2091492, + 5850387 + ], + [ + 2091499, + 5850399 + ], + [ + 2091504, + 5850410 + ], + [ + 2091514, + 5850418 + ], + [ + 2091519, + 5850430 + ], + [ + 2091526, + 5850441 + ], + [ + 2091534, + 5850450 + ], + [ + 2091541, + 5850462 + ], + [ + 2091546, + 5850472 + ], + [ + 2091555, + 5850482 + ], + [ + 2091561, + 5850493 + ], + [ + 2091567, + 5850504 + ], + [ + 2091576, + 5850513 + ], + [ + 2091582, + 5850524 + ], + [ + 2091588, + 5850535 + ], + [ + 2091597, + 5850544 + ], + [ + 2091604, + 5850555 + ], + [ + 2091609, + 5850566 + ], + [ + 2091620, + 5850575 + ], + [ + 2091625, + 5850586 + ], + [ + 2091632, + 5850597 + ], + [ + 2091641, + 5850606 + ], + [ + 2091646, + 5850617 + ], + [ + 2091653, + 5850628 + ], + [ + 2091662, + 5850637 + ], + [ + 2091669, + 5850648 + ], + [ + 2091674, + 5850659 + ], + [ + 2091683, + 5850667 + ], + [ + 2091689, + 5850679 + ], + [ + 2091696, + 5850690 + ], + [ + 2091704, + 5850698 + ], + [ + 2091711, + 5850709 + ], + [ + 2091717, + 5850720 + ], + [ + 2091726, + 5850729 + ], + [ + 2091731, + 5850740 + ], + [ + 2091738, + 5850751 + ], + [ + 2091746, + 5850760 + ], + [ + 2091752, + 5850771 + ], + [ + 2091758, + 5850781 + ], + [ + 2091767, + 5850790 + ], + [ + 2091773, + 5850802 + ], + [ + 2091779, + 5850813 + ], + [ + 2091788, + 5850821 + ], + [ + 2091794, + 5850832 + ], + [ + 2091800, + 5850843 + ], + [ + 2091808, + 5850853 + ], + [ + 2091815, + 5850863 + ], + [ + 2091821, + 5850874 + ], + [ + 2091829, + 5850884 + ], + [ + 2091835, + 5850895 + ], + [ + 2091841, + 5850905 + ], + [ + 2091850, + 5850915 + ], + [ + 2091856, + 5850926 + ], + [ + 2091862, + 5850937 + ], + [ + 2091871, + 5850946 + ], + [ + 2091877, + 5850957 + ], + [ + 2091883, + 5850968 + ], + [ + 2091893, + 5850976 + ], + [ + 2091898, + 5850987 + ], + [ + 2091905, + 5850999 + ], + [ + 2091914, + 5851008 + ], + [ + 2091920, + 5851018 + ], + [ + 2091926, + 5851030 + ], + [ + 2091934, + 5851039 + ], + [ + 2091941, + 5851050 + ], + [ + 2091946, + 5851061 + ], + [ + 2091956, + 5851070 + ], + [ + 2091962, + 5851081 + ], + [ + 2091969, + 5851092 + ], + [ + 2091977, + 5851100 + ], + [ + 2091984, + 5851112 + ], + [ + 2091989, + 5851123 + ], + [ + 2091999, + 5851132 + ], + [ + 2092005, + 5851143 + ], + [ + 2092011, + 5851154 + ], + [ + 2092019, + 5851163 + ], + [ + 2092026, + 5851175 + ], + [ + 2092032, + 5851185 + ], + [ + 2092039, + 5851194 + ], + [ + 2092046, + 5851206 + ], + [ + 2092052, + 5851217 + ], + [ + 2092061, + 5851225 + ], + [ + 2092067, + 5851237 + ], + [ + 2092073, + 5851248 + ], + [ + 2092082, + 5851256 + ], + [ + 2092088, + 5851267 + ], + [ + 2092094, + 5851279 + ], + [ + 2092104, + 5851288 + ], + [ + 2092109, + 5851298 + ], + [ + 2092116, + 5851310 + ], + [ + 2092124, + 5851320 + ], + [ + 2092130, + 5851331 + ], + [ + 2092136, + 5851341 + ], + [ + 2092144, + 5851351 + ], + [ + 2092151, + 5851362 + ], + [ + 2092156, + 5851373 + ], + [ + 2092166, + 5851382 + ], + [ + 2092171, + 5851393 + ], + [ + 2092178, + 5851404 + ], + [ + 2092186, + 5851413 + ], + [ + 2092193, + 5851424 + ], + [ + 2092199, + 5851435 + ], + [ + 2092209, + 5851444 + ], + [ + 2092215, + 5851455 + ], + [ + 2092221, + 5851465 + ], + [ + 2092230, + 5851474 + ], + [ + 2092236, + 5851486 + ], + [ + 2092242, + 5851497 + ], + [ + 2092251, + 5851505 + ], + [ + 2092258, + 5851516 + ], + [ + 2092263, + 5851528 + ], + [ + 2092273, + 5851536 + ], + [ + 2092278, + 5851547 + ], + [ + 2092285, + 5851559 + ], + [ + 2092293, + 5851568 + ], + [ + 2092300, + 5851578 + ], + [ + 2092306, + 5851589 + ], + [ + 2092315, + 5851599 + ], + [ + 2092320, + 5851610 + ], + [ + 2092327, + 5851621 + ], + [ + 2092336, + 5851630 + ], + [ + 2092341, + 5851642 + ], + [ + 2092348, + 5851653 + ], + [ + 2092356, + 5851661 + ], + [ + 2092363, + 5851673 + ], + [ + 2092368, + 5851684 + ], + [ + 2092377, + 5851694 + ], + [ + 2092382, + 5851704 + ], + [ + 2092389, + 5851715 + ], + [ + 2092397, + 5851725 + ], + [ + 2092404, + 5851736 + ], + [ + 2092409, + 5851746 + ], + [ + 2092418, + 5851756 + ], + [ + 2092424, + 5851767 + ], + [ + 2092430, + 5851779 + ], + [ + 2092440, + 5851786 + ], + [ + 2092445, + 5851798 + ], + [ + 2092452, + 5851809 + ], + [ + 2092460, + 5851817 + ], + [ + 2092467, + 5851828 + ], + [ + 2092472, + 5851839 + ], + [ + 2092482, + 5851848 + ], + [ + 2092488, + 5851859 + ], + [ + 2092495, + 5851870 + ], + [ + 2092504, + 5851878 + ], + [ + 2092510, + 5851890 + ], + [ + 2092516, + 5851900 + ], + [ + 2092525, + 5851910 + ], + [ + 2092531, + 5851921 + ], + [ + 2092537, + 5851932 + ], + [ + 2092546, + 5851941 + ], + [ + 2092552, + 5851952 + ], + [ + 2092558, + 5851963 + ], + [ + 2092567, + 5851973 + ], + [ + 2092573, + 5851983 + ], + [ + 2092579, + 5851995 + ], + [ + 2092588, + 5852004 + ], + [ + 2092593, + 5852015 + ], + [ + 2092600, + 5852026 + ], + [ + 2092608, + 5852035 + ], + [ + 2092615, + 5852047 + ], + [ + 2092620, + 5852058 + ], + [ + 2092629, + 5852067 + ], + [ + 2092635, + 5852078 + ], + [ + 2092641, + 5852089 + ], + [ + 2092651, + 5852097 + ], + [ + 2092656, + 5852109 + ], + [ + 2092663, + 5852120 + ], + [ + 2092671, + 5852129 + ], + [ + 2092678, + 5852139 + ], + [ + 2092683, + 5852151 + ], + [ + 2092693, + 5852160 + ], + [ + 2092698, + 5852171 + ], + [ + 2092705, + 5852182 + ], + [ + 2092713, + 5852191 + ], + [ + 2092720, + 5852203 + ], + [ + 2092725, + 5852214 + ], + [ + 2092733, + 5852222 + ], + [ + 2092740, + 5852233 + ], + [ + 2092746, + 5852245 + ], + [ + 2092755, + 5852254 + ], + [ + 2092761, + 5852265 + ], + [ + 2092767, + 5852276 + ], + [ + 2092776, + 5852285 + ], + [ + 2092783, + 5852297 + ], + [ + 2092788, + 5852307 + ], + [ + 2092798, + 5852316 + ], + [ + 2092803, + 5852328 + ], + [ + 2092810, + 5852339 + ], + [ + 2092818, + 5852347 + ], + [ + 2092825, + 5852359 + ], + [ + 2092830, + 5852370 + ], + [ + 2092838, + 5852379 + ], + [ + 2092845, + 5852390 + ], + [ + 2092851, + 5852401 + ], + [ + 2092859, + 5852410 + ], + [ + 2092865, + 5852422 + ], + [ + 2092871, + 5852432 + ], + [ + 2092880, + 5852441 + ], + [ + 2092887, + 5852452 + ], + [ + 2092892, + 5852464 + ], + [ + 2092903, + 5852472 + ], + [ + 2092908, + 5852483 + ], + [ + 2092915, + 5852494 + ], + [ + 2092923, + 5852503 + ], + [ + 2092930, + 5852514 + ], + [ + 2092935, + 5852525 + ], + [ + 2092944, + 5852535 + ], + [ + 2092950, + 5852545 + ], + [ + 2092956, + 5852556 + ], + [ + 2092965, + 5852566 + ], + [ + 2092971, + 5852577 + ], + [ + 2092977, + 5852587 + ], + [ + 2092986, + 5852597 + ], + [ + 2092993, + 5852608 + ], + [ + 2092998, + 5852619 + ], + [ + 2093008, + 5852627 + ], + [ + 2093014, + 5852638 + ], + [ + 2093020, + 5852650 + ], + [ + 2093030, + 5852658 + ], + [ + 2093035, + 5852669 + ], + [ + 2093042, + 5852680 + ], + [ + 2093050, + 5852690 + ], + [ + 2093057, + 5852700 + ], + [ + 2093062, + 5852711 + ], + [ + 2093072, + 5852721 + ], + [ + 2093077, + 5852732 + ], + [ + 2093084, + 5852742 + ], + [ + 2093092, + 5852752 + ], + [ + 2093098, + 5852763 + ], + [ + 2093104, + 5852775 + ], + [ + 2093113, + 5852783 + ], + [ + 2093119, + 5852794 + ], + [ + 2093126, + 5852805 + ], + [ + 2093134, + 5852814 + ], + [ + 2093140, + 5852825 + ], + [ + 2093147, + 5852836 + ], + [ + 2093156, + 5852845 + ], + [ + 2093162, + 5852856 + ], + [ + 2093168, + 5852867 + ], + [ + 2093177, + 5852876 + ], + [ + 2093183, + 5852888 + ], + [ + 2093189, + 5852899 + ], + [ + 2093197, + 5852908 + ], + [ + 2093204, + 5852919 + ], + [ + 2093210, + 5852930 + ], + [ + 2093218, + 5852940 + ], + [ + 2093224, + 5852950 + ], + [ + 2093231, + 5852961 + ], + [ + 2093238, + 5852971 + ], + [ + 2093244, + 5852982 + ], + [ + 2093251, + 5852992 + ], + [ + 2093259, + 5853002 + ], + [ + 2093265, + 5853013 + ], + [ + 2093271, + 5853024 + ], + [ + 2093281, + 5853033 + ], + [ + 2093287, + 5853044 + ], + [ + 2093293, + 5853055 + ], + [ + 2093302, + 5853063 + ], + [ + 2093309, + 5853075 + ], + [ + 2093314, + 5853086 + ], + [ + 2093324, + 5853096 + ], + [ + 2093329, + 5853106 + ], + [ + 2093336, + 5853117 + ], + [ + 2093344, + 5853127 + ], + [ + 2093350, + 5853138 + ], + [ + 2093356, + 5853148 + ], + [ + 2093364, + 5853158 + ], + [ + 2093371, + 5853169 + ], + [ + 2093377, + 5853180 + ], + [ + 2093386, + 5853188 + ], + [ + 2093392, + 5853199 + ], + [ + 2093399, + 5853211 + ], + [ + 2093407, + 5853220 + ], + [ + 2093414, + 5853230 + ], + [ + 2093420, + 5853241 + ], + [ + 2093430, + 5853251 + ], + [ + 2093435, + 5853261 + ], + [ + 2093441, + 5853272 + ], + [ + 2093450, + 5853281 + ], + [ + 2093456, + 5853293 + ], + [ + 2093463, + 5853303 + ], + [ + 2093471, + 5853313 + ], + [ + 2093477, + 5853324 + ], + [ + 2093483, + 5853335 + ], + [ + 2093492, + 5853344 + ], + [ + 2093498, + 5853355 + ], + [ + 2093505, + 5853366 + ], + [ + 2093513, + 5853376 + ], + [ + 2093519, + 5853386 + ], + [ + 2093525, + 5853397 + ], + [ + 2093534, + 5853406 + ], + [ + 2093540, + 5853418 + ], + [ + 2093546, + 5853428 + ], + [ + 2093555, + 5853437 + ], + [ + 2093561, + 5853449 + ], + [ + 2093567, + 5853460 + ], + [ + 2093575, + 5853468 + ], + [ + 2093582, + 5853480 + ], + [ + 2093588, + 5853491 + ], + [ + 2093597, + 5853501 + ], + [ + 2093602, + 5853511 + ], + [ + 2093609, + 5853522 + ], + [ + 2093618, + 5853531 + ], + [ + 2093624, + 5853543 + ], + [ + 2093630, + 5853553 + ], + [ + 2093639, + 5853563 + ], + [ + 2093645, + 5853574 + ], + [ + 2093650, + 5853585 + ], + [ + 2093659, + 5853594 + ], + [ + 2093665, + 5853605 + ], + [ + 2093672, + 5853616 + ], + [ + 2093679, + 5853625 + ], + [ + 2093686, + 5853636 + ], + [ + 2093692, + 5853647 + ], + [ + 2093701, + 5853657 + ], + [ + 2093706, + 5853668 + ], + [ + 2093713, + 5853678 + ], + [ + 2093722, + 5853688 + ], + [ + 2093728, + 5853699 + ], + [ + 2093734, + 5853709 + ], + [ + 2093743, + 5853718 + ], + [ + 2093750, + 5853729 + ], + [ + 2093755, + 5853740 + ], + [ + 2093765, + 5853749 + ], + [ + 2093771, + 5853760 + ], + [ + 2093777, + 5853771 + ], + [ + 2093786, + 5853781 + ], + [ + 2093792, + 5853791 + ], + [ + 2093798, + 5853802 + ], + [ + 2093807, + 5853812 + ], + [ + 2093813, + 5853823 + ], + [ + 2093819, + 5853833 + ], + [ + 2093827, + 5853843 + ], + [ + 2093834, + 5853854 + ], + [ + 2093840, + 5853866 + ], + [ + 2093848, + 5853874 + ], + [ + 2093855, + 5853885 + ], + [ + 2093861, + 5853896 + ], + [ + 2093871, + 5853904 + ], + [ + 2093876, + 5853916 + ], + [ + 2093883, + 5853927 + ], + [ + 2093892, + 5853936 + ], + [ + 2093899, + 5853946 + ], + [ + 2093905, + 5853957 + ], + [ + 2093914, + 5853967 + ], + [ + 2093919, + 5853978 + ], + [ + 2093926, + 5853988 + ], + [ + 2093934, + 5853998 + ], + [ + 2093940, + 5854009 + ], + [ + 2093947, + 5854020 + ], + [ + 2093956, + 5854028 + ], + [ + 2093963, + 5854039 + ], + [ + 2093969, + 5854050 + ], + [ + 2093978, + 5854058 + ], + [ + 2093984, + 5854069 + ], + [ + 2093991, + 5854081 + ], + [ + 2093999, + 5854090 + ], + [ + 2094006, + 5854101 + ], + [ + 2094012, + 5854112 + ], + [ + 2094020, + 5854121 + ], + [ + 2094026, + 5854132 + ], + [ + 2094033, + 5854143 + ], + [ + 2094041, + 5854152 + ], + [ + 2094047, + 5854163 + ], + [ + 2094054, + 5854174 + ], + [ + 2094061, + 5854183 + ], + [ + 2094068, + 5854194 + ], + [ + 2094074, + 5854205 + ], + [ + 2094084, + 5854214 + ], + [ + 2094089, + 5854225 + ], + [ + 2094096, + 5854236 + ], + [ + 2094104, + 5854246 + ], + [ + 2094111, + 5854257 + ], + [ + 2094117, + 5854267 + ], + [ + 2094126, + 5854277 + ], + [ + 2094131, + 5854288 + ], + [ + 2094137, + 5854299 + ], + [ + 2094146, + 5854308 + ], + [ + 2094152, + 5854319 + ], + [ + 2094159, + 5854330 + ], + [ + 2094166, + 5854339 + ], + [ + 2094173, + 5854350 + ], + [ + 2094179, + 5854362 + ], + [ + 2094187, + 5854371 + ], + [ + 2094193, + 5854383 + ], + [ + 2094200, + 5854393 + ], + [ + 2094207, + 5854403 + ], + [ + 2094214, + 5854414 + ], + [ + 2094220, + 5854425 + ], + [ + 2094229, + 5854434 + ], + [ + 2094235, + 5854445 + ], + [ + 2094241, + 5854456 + ], + [ + 2094250, + 5854464 + ], + [ + 2094256, + 5854475 + ], + [ + 2094263, + 5854487 + ], + [ + 2094270, + 5854496 + ], + [ + 2094277, + 5854506 + ], + [ + 2094283, + 5854518 + ], + [ + 2094292, + 5854528 + ], + [ + 2094298, + 5854539 + ], + [ + 2094305, + 5854549 + ], + [ + 2094311, + 5854559 + ], + [ + 2094318, + 5854571 + ], + [ + 2094324, + 5854582 + ], + [ + 2094333, + 5854591 + ], + [ + 2094338, + 5854602 + ], + [ + 2094345, + 5854613 + ], + [ + 2094352, + 5854623 + ], + [ + 2094358, + 5854633 + ], + [ + 2094365, + 5854644 + ], + [ + 2094372, + 5854654 + ], + [ + 2094379, + 5854666 + ], + [ + 2094385, + 5854676 + ], + [ + 2094393, + 5854686 + ], + [ + 2094399, + 5854698 + ], + [ + 2094406, + 5854709 + ], + [ + 2094414, + 5854717 + ], + [ + 2094421, + 5854728 + ], + [ + 2094427, + 5854740 + ], + [ + 2094437, + 5854749 + ], + [ + 2094443, + 5854759 + ], + [ + 2094449, + 5854770 + ], + [ + 2094458, + 5854779 + ], + [ + 2094463, + 5854791 + ], + [ + 2094470, + 5854801 + ], + [ + 2094479, + 5854810 + ], + [ + 2094485, + 5854821 + ], + [ + 2094491, + 5854832 + ], + [ + 2094500, + 5854840 + ], + [ + 2094506, + 5854851 + ], + [ + 2094513, + 5854863 + ], + [ + 2094521, + 5854871 + ], + [ + 2094528, + 5854882 + ], + [ + 2094534, + 5854893 + ], + [ + 2094543, + 5854903 + ], + [ + 2094549, + 5854913 + ], + [ + 2094555, + 5854924 + ], + [ + 2094564, + 5854934 + ], + [ + 2094570, + 5854945 + ], + [ + 2094577, + 5854955 + ], + [ + 2094585, + 5854965 + ], + [ + 2094592, + 5854976 + ], + [ + 2094598, + 5854987 + ], + [ + 2094606, + 5854996 + ], + [ + 2094612, + 5855007 + ], + [ + 2094619, + 5855018 + ], + [ + 2094626, + 5855028 + ], + [ + 2094633, + 5855038 + ], + [ + 2094639, + 5855049 + ], + [ + 2094647, + 5855058 + ], + [ + 2094654, + 5855070 + ], + [ + 2094660, + 5855080 + ], + [ + 2094669, + 5855089 + ], + [ + 2094675, + 5855100 + ], + [ + 2094682, + 5855111 + ], + [ + 2094690, + 5855120 + ], + [ + 2094697, + 5855131 + ], + [ + 2094703, + 5855142 + ], + [ + 2094712, + 5855151 + ], + [ + 2094717, + 5855162 + ], + [ + 2094724, + 5855173 + ], + [ + 2094733, + 5855183 + ], + [ + 2094740, + 5855193 + ], + [ + 2094746, + 5855204 + ], + [ + 2094753, + 5855214 + ], + [ + 2094760, + 5855225 + ], + [ + 2094766, + 5855235 + ], + [ + 2094775, + 5855245 + ], + [ + 2094781, + 5855256 + ], + [ + 2094788, + 5855267 + ], + [ + 2094795, + 5855276 + ], + [ + 2094802, + 5855287 + ], + [ + 2094808, + 5855298 + ], + [ + 2094817, + 5855308 + ], + [ + 2094823, + 5855318 + ], + [ + 2094830, + 5855329 + ], + [ + 2094837, + 5855339 + ], + [ + 2094844, + 5855350 + ], + [ + 2094850, + 5855360 + ], + [ + 2094858, + 5855370 + ], + [ + 2094865, + 5855381 + ], + [ + 2094871, + 5855392 + ], + [ + 2094879, + 5855402 + ], + [ + 2094885, + 5855413 + ], + [ + 2094892, + 5855424 + ], + [ + 2094900, + 5855432 + ], + [ + 2094907, + 5855444 + ], + [ + 2094913, + 5855455 + ], + [ + 2094921, + 5855464 + ], + [ + 2094927, + 5855474 + ], + [ + 2094934, + 5855485 + ], + [ + 2094942, + 5855495 + ], + [ + 2094949, + 5855506 + ], + [ + 2094955, + 5855516 + ], + [ + 2094963, + 5855526 + ], + [ + 2094970, + 5855537 + ], + [ + 2094976, + 5855548 + ], + [ + 2094985, + 5855556 + ], + [ + 2094991, + 5855567 + ], + [ + 2094998, + 5855578 + ], + [ + 2095006, + 5855588 + ], + [ + 2095013, + 5855598 + ], + [ + 2095019, + 5855609 + ], + [ + 2095028, + 5855618 + ], + [ + 2095034, + 5855628 + ], + [ + 2095040, + 5855639 + ], + [ + 2095048, + 5855650 + ], + [ + 2095054, + 5855661 + ], + [ + 2095061, + 5855672 + ], + [ + 2095068, + 5855682 + ], + [ + 2095075, + 5855693 + ], + [ + 2095081, + 5855704 + ], + [ + 2095089, + 5855713 + ], + [ + 2095095, + 5855724 + ], + [ + 2095102, + 5855735 + ], + [ + 2095110, + 5855745 + ], + [ + 2095116, + 5855756 + ], + [ + 2095122, + 5855766 + ], + [ + 2095131, + 5855776 + ], + [ + 2095137, + 5855787 + ], + [ + 2095144, + 5855797 + ], + [ + 2095151, + 5855807 + ], + [ + 2095157, + 5855818 + ], + [ + 2095164, + 5855829 + ], + [ + 2095171, + 5855838 + ], + [ + 2095178, + 5855850 + ], + [ + 2095184, + 5855861 + ], + [ + 2095193, + 5855870 + ], + [ + 2095199, + 5855880 + ], + [ + 2095206, + 5855892 + ], + [ + 2095213, + 5855901 + ], + [ + 2095220, + 5855912 + ], + [ + 2095226, + 5855923 + ], + [ + 2095235, + 5855932 + ], + [ + 2095241, + 5855943 + ], + [ + 2095248, + 5855954 + ], + [ + 2095255, + 5855964 + ], + [ + 2095262, + 5855975 + ], + [ + 2095268, + 5855986 + ], + [ + 2095276, + 5855996 + ], + [ + 2095283, + 5856006 + ], + [ + 2095289, + 5856017 + ], + [ + 2095297, + 5856027 + ], + [ + 2095303, + 5856038 + ], + [ + 2095310, + 5856048 + ], + [ + 2095318, + 5856058 + ], + [ + 2095325, + 5856069 + ], + [ + 2095331, + 5856080 + ], + [ + 2095340, + 5856088 + ], + [ + 2095346, + 5856099 + ], + [ + 2095353, + 5856110 + ], + [ + 2095362, + 5856118 + ], + [ + 2095368, + 5856129 + ], + [ + 2095375, + 5856140 + ], + [ + 2095384, + 5856150 + ], + [ + 2095391, + 5856160 + ], + [ + 2095397, + 5856171 + ], + [ + 2095405, + 5856181 + ], + [ + 2095411, + 5856192 + ], + [ + 2095418, + 5856202 + ], + [ + 2095426, + 5856211 + ], + [ + 2095433, + 5856222 + ], + [ + 2095440, + 5856233 + ], + [ + 2095447, + 5856243 + ], + [ + 2095453, + 5856254 + ], + [ + 2095459, + 5856265 + ], + [ + 2095467, + 5856275 + ], + [ + 2095473, + 5856285 + ], + [ + 2095481, + 5856296 + ], + [ + 2095488, + 5856306 + ], + [ + 2095495, + 5856317 + ], + [ + 2095501, + 5856327 + ], + [ + 2095509, + 5856337 + ], + [ + 2095515, + 5856348 + ], + [ + 2095522, + 5856359 + ], + [ + 2095529, + 5856368 + ], + [ + 2095536, + 5856379 + ], + [ + 2095542, + 5856391 + ], + [ + 2095551, + 5856400 + ], + [ + 2095557, + 5856411 + ], + [ + 2095564, + 5856422 + ], + [ + 2095572, + 5856432 + ], + [ + 2095578, + 5856442 + ], + [ + 2095585, + 5856453 + ], + [ + 2095593, + 5856462 + ], + [ + 2095600, + 5856473 + ], + [ + 2095606, + 5856483 + ], + [ + 2095616, + 5856492 + ], + [ + 2095622, + 5856503 + ], + [ + 2095629, + 5856514 + ], + [ + 2095637, + 5856523 + ], + [ + 2095644, + 5856534 + ], + [ + 2095650, + 5856545 + ], + [ + 2095658, + 5856553 + ], + [ + 2095666, + 5856564 + ], + [ + 2095672, + 5856575 + ], + [ + 2095680, + 5856585 + ], + [ + 2095687, + 5856594 + ], + [ + 2095694, + 5856605 + ], + [ + 2095701, + 5856615 + ], + [ + 2095708, + 5856626 + ], + [ + 2095715, + 5856636 + ], + [ + 2095723, + 5856646 + ], + [ + 2095729, + 5856657 + ], + [ + 2095737, + 5856668 + ], + [ + 2095744, + 5856677 + ], + [ + 2095750, + 5856688 + ], + [ + 2095757, + 5856699 + ], + [ + 2095765, + 5856709 + ], + [ + 2095772, + 5856719 + ], + [ + 2095778, + 5856730 + ], + [ + 2095786, + 5856740 + ], + [ + 2095792, + 5856751 + ], + [ + 2095799, + 5856761 + ], + [ + 2095806, + 5856771 + ], + [ + 2095813, + 5856782 + ], + [ + 2095819, + 5856793 + ], + [ + 2095828, + 5856802 + ], + [ + 2095834, + 5856813 + ], + [ + 2095841, + 5856824 + ], + [ + 2095848, + 5856833 + ], + [ + 2095854, + 5856844 + ], + [ + 2095861, + 5856855 + ], + [ + 2095869, + 5856865 + ], + [ + 2095876, + 5856875 + ], + [ + 2095882, + 5856886 + ], + [ + 2095890, + 5856896 + ], + [ + 2095896, + 5856907 + ], + [ + 2095903, + 5856917 + ], + [ + 2095911, + 5856927 + ], + [ + 2095918, + 5856938 + ], + [ + 2095924, + 5856949 + ], + [ + 2095932, + 5856959 + ], + [ + 2095938, + 5856970 + ], + [ + 2095946, + 5856981 + ], + [ + 2095953, + 5856991 + ], + [ + 2095959, + 5857001 + ], + [ + 2095966, + 5857012 + ], + [ + 2095973, + 5857021 + ], + [ + 2095980, + 5857032 + ], + [ + 2095987, + 5857042 + ], + [ + 2095995, + 5857053 + ], + [ + 2096001, + 5857064 + ], + [ + 2096008, + 5857075 + ], + [ + 2096016, + 5857083 + ], + [ + 2096023, + 5857094 + ], + [ + 2096029, + 5857105 + ], + [ + 2096038, + 5857115 + ], + [ + 2096044, + 5857125 + ], + [ + 2096051, + 5857136 + ], + [ + 2096059, + 5857145 + ], + [ + 2096066, + 5857155 + ], + [ + 2096073, + 5857166 + ], + [ + 2096080, + 5857176 + ], + [ + 2096087, + 5857187 + ], + [ + 2096093, + 5857197 + ], + [ + 2096102, + 5857207 + ], + [ + 2096108, + 5857218 + ], + [ + 2096115, + 5857229 + ], + [ + 2096122, + 5857238 + ], + [ + 2096129, + 5857249 + ], + [ + 2096136, + 5857260 + ], + [ + 2096144, + 5857270 + ], + [ + 2096150, + 5857280 + ], + [ + 2096156, + 5857291 + ], + [ + 2096165, + 5857300 + ], + [ + 2096171, + 5857311 + ], + [ + 2096179, + 5857321 + ], + [ + 2096186, + 5857331 + ], + [ + 2096193, + 5857342 + ], + [ + 2096199, + 5857353 + ], + [ + 2096208, + 5857362 + ], + [ + 2096214, + 5857373 + ], + [ + 2096221, + 5857384 + ], + [ + 2096228, + 5857393 + ], + [ + 2096235, + 5857404 + ], + [ + 2096242, + 5857415 + ], + [ + 2096249, + 5857425 + ], + [ + 2096256, + 5857435 + ], + [ + 2096263, + 5857446 + ], + [ + 2096271, + 5857456 + ], + [ + 2096277, + 5857467 + ], + [ + 2096285, + 5857477 + ], + [ + 2096292, + 5857487 + ], + [ + 2096299, + 5857498 + ], + [ + 2096305, + 5857509 + ], + [ + 2096313, + 5857518 + ], + [ + 2096319, + 5857529 + ], + [ + 2096326, + 5857540 + ], + [ + 2096334, + 5857550 + ], + [ + 2096341, + 5857560 + ], + [ + 2096348, + 5857571 + ], + [ + 2096355, + 5857580 + ], + [ + 2096362, + 5857591 + ], + [ + 2096368, + 5857601 + ], + [ + 2096377, + 5857611 + ], + [ + 2096383, + 5857622 + ], + [ + 2096390, + 5857633 + ], + [ + 2096398, + 5857642 + ], + [ + 2096405, + 5857653 + ], + [ + 2096411, + 5857664 + ], + [ + 2096420, + 5857673 + ], + [ + 2096426, + 5857684 + ], + [ + 2096433, + 5857695 + ], + [ + 2096441, + 5857704 + ], + [ + 2096447, + 5857714 + ], + [ + 2096454, + 5857725 + ], + [ + 2096462, + 5857735 + ], + [ + 2096469, + 5857746 + ], + [ + 2096475, + 5857756 + ], + [ + 2096482, + 5857766 + ], + [ + 2096489, + 5857777 + ], + [ + 2096496, + 5857788 + ], + [ + 2096503, + 5857797 + ], + [ + 2096511, + 5857808 + ], + [ + 2096517, + 5857819 + ], + [ + 2096526, + 5857828 + ], + [ + 2096532, + 5857839 + ], + [ + 2096539, + 5857850 + ], + [ + 2096547, + 5857859 + ], + [ + 2096553, + 5857869 + ], + [ + 2096560, + 5857880 + ], + [ + 2096568, + 5857890 + ], + [ + 2096575, + 5857901 + ], + [ + 2096581, + 5857911 + ], + [ + 2096589, + 5857921 + ], + [ + 2096595, + 5857932 + ], + [ + 2096603, + 5857943 + ], + [ + 2096611, + 5857952 + ], + [ + 2096618, + 5857963 + ], + [ + 2096624, + 5857974 + ], + [ + 2096632, + 5857984 + ], + [ + 2096639, + 5857993 + ], + [ + 2096645, + 5858004 + ], + [ + 2096654, + 5858014 + ], + [ + 2096660, + 5858025 + ], + [ + 2096667, + 5858035 + ], + [ + 2096675, + 5858045 + ], + [ + 2096682, + 5858056 + ], + [ + 2096688, + 5858066 + ], + [ + 2096696, + 5858076 + ], + [ + 2096702, + 5858087 + ], + [ + 2096710, + 5858098 + ], + [ + 2096716, + 5858107 + ], + [ + 2096723, + 5858118 + ], + [ + 2096730, + 5858129 + ], + [ + 2096736, + 5858139 + ], + [ + 2096744, + 5858149 + ], + [ + 2096750, + 5858160 + ], + [ + 2096758, + 5858171 + ], + [ + 2096764, + 5858182 + ], + [ + 2096771, + 5858192 + ], + [ + 2096778, + 5858202 + ], + [ + 2096785, + 5858213 + ], + [ + 2096791, + 5858224 + ], + [ + 2096800, + 5858232 + ], + [ + 2096806, + 5858243 + ], + [ + 2096813, + 5858254 + ], + [ + 2096821, + 5858264 + ], + [ + 2096828, + 5858274 + ], + [ + 2096834, + 5858285 + ], + [ + 2096842, + 5858295 + ], + [ + 2096849, + 5858306 + ], + [ + 2096856, + 5858316 + ], + [ + 2096864, + 5858325 + ], + [ + 2096870, + 5858336 + ], + [ + 2096877, + 5858347 + ], + [ + 2096885, + 5858356 + ], + [ + 2096892, + 5858367 + ], + [ + 2096898, + 5858378 + ], + [ + 2096907, + 5858387 + ], + [ + 2096913, + 5858398 + ], + [ + 2096920, + 5858409 + ], + [ + 2096928, + 5858419 + ], + [ + 2096934, + 5858429 + ], + [ + 2096941, + 5858440 + ], + [ + 2096949, + 5858449 + ], + [ + 2096956, + 5858460 + ], + [ + 2096962, + 5858470 + ], + [ + 2096970, + 5858481 + ], + [ + 2096976, + 5858492 + ], + [ + 2096983, + 5858503 + ], + [ + 2096990, + 5858512 + ], + [ + 2096997, + 5858523 + ], + [ + 2097003, + 5858534 + ], + [ + 2097011, + 5858545 + ], + [ + 2097017, + 5858555 + ], + [ + 2097025, + 5858566 + ], + [ + 2097031, + 5858576 + ], + [ + 2097038, + 5858587 + ], + [ + 2097045, + 5858597 + ], + [ + 2097052, + 5858607 + ], + [ + 2097059, + 5858618 + ], + [ + 2097065, + 5858629 + ], + [ + 2097073, + 5858638 + ], + [ + 2097079, + 5858649 + ], + [ + 2097087, + 5858660 + ], + [ + 2097094, + 5858670 + ], + [ + 2097101, + 5858680 + ], + [ + 2097107, + 5858691 + ], + [ + 2097116, + 5858701 + ], + [ + 2097122, + 5858712 + ], + [ + 2097129, + 5858722 + ], + [ + 2097136, + 5858732 + ], + [ + 2097142, + 5858743 + ], + [ + 2097149, + 5858754 + ], + [ + 2097156, + 5858763 + ], + [ + 2097163, + 5858774 + ], + [ + 2097169, + 5858785 + ], + [ + 2097177, + 5858795 + ], + [ + 2097183, + 5858805 + ], + [ + 2097190, + 5858816 + ], + [ + 2097197, + 5858827 + ], + [ + 2097205, + 5858837 + ], + [ + 2097211, + 5858848 + ], + [ + 2097219, + 5858857 + ], + [ + 2097225, + 5858868 + ], + [ + 2097233, + 5858878 + ], + [ + 2097239, + 5858889 + ], + [ + 2097247, + 5858900 + ], + [ + 2097253, + 5858911 + ], + [ + 2097260, + 5858920 + ], + [ + 2097267, + 5858931 + ], + [ + 2097273, + 5858942 + ], + [ + 2097282, + 5858951 + ], + [ + 2097288, + 5858961 + ], + [ + 2097295, + 5858972 + ], + [ + 2097303, + 5858982 + ], + [ + 2097310, + 5858993 + ], + [ + 2097316, + 5859003 + ], + [ + 2097324, + 5859013 + ], + [ + 2097330, + 5859024 + ], + [ + 2097337, + 5859035 + ], + [ + 2097344, + 5859045 + ], + [ + 2097351, + 5859055 + ], + [ + 2097358, + 5859066 + ], + [ + 2097365, + 5859076 + ], + [ + 2097373, + 5859086 + ], + [ + 2097379, + 5859097 + ], + [ + 2097387, + 5859107 + ], + [ + 2097394, + 5859118 + ], + [ + 2097401, + 5859128 + ], + [ + 2097409, + 5859137 + ], + [ + 2097416, + 5859148 + ], + [ + 2097423, + 5859158 + ], + [ + 2097431, + 5859167 + ], + [ + 2097438, + 5859178 + ], + [ + 2097444, + 5859189 + ], + [ + 2097452, + 5859198 + ], + [ + 2097459, + 5859209 + ], + [ + 2097466, + 5859220 + ], + [ + 2097473, + 5859230 + ], + [ + 2097480, + 5859240 + ], + [ + 2097486, + 5859251 + ], + [ + 2097494, + 5859261 + ], + [ + 2097500, + 5859272 + ], + [ + 2097507, + 5859282 + ], + [ + 2097515, + 5859293 + ], + [ + 2097522, + 5859303 + ], + [ + 2097528, + 5859314 + ], + [ + 2097536, + 5859324 + ], + [ + 2097542, + 5859335 + ], + [ + 2097548, + 5859346 + ], + [ + 2097557, + 5859356 + ], + [ + 2097563, + 5859366 + ], + [ + 2097570, + 5859377 + ], + [ + 2097577, + 5859387 + ], + [ + 2097584, + 5859398 + ], + [ + 2097590, + 5859407 + ], + [ + 2097599, + 5859417 + ], + [ + 2097605, + 5859428 + ], + [ + 2097613, + 5859438 + ], + [ + 2097620, + 5859449 + ], + [ + 2097627, + 5859460 + ], + [ + 2097633, + 5859470 + ], + [ + 2097642, + 5859480 + ], + [ + 2097648, + 5859491 + ], + [ + 2097654, + 5859501 + ], + [ + 2097663, + 5859511 + ], + [ + 2097669, + 5859521 + ], + [ + 2097676, + 5859532 + ], + [ + 2097684, + 5859542 + ], + [ + 2097691, + 5859553 + ], + [ + 2097697, + 5859563 + ], + [ + 2097705, + 5859572 + ], + [ + 2097711, + 5859583 + ], + [ + 2097719, + 5859594 + ], + [ + 2097725, + 5859604 + ], + [ + 2097732, + 5859615 + ], + [ + 2097739, + 5859626 + ], + [ + 2097745, + 5859636 + ], + [ + 2097752, + 5859646 + ], + [ + 2097759, + 5859657 + ], + [ + 2097766, + 5859667 + ], + [ + 2097772, + 5859678 + ], + [ + 2097780, + 5859688 + ], + [ + 2097787, + 5859697 + ], + [ + 2097795, + 5859708 + ], + [ + 2097801, + 5859719 + ], + [ + 2097808, + 5859729 + ], + [ + 2097815, + 5859740 + ], + [ + 2097822, + 5859751 + ], + [ + 2097829, + 5859761 + ], + [ + 2097836, + 5859771 + ], + [ + 2097842, + 5859782 + ], + [ + 2097849, + 5859792 + ], + [ + 2097856, + 5859803 + ], + [ + 2097862, + 5859813 + ], + [ + 2097871, + 5859823 + ], + [ + 2097877, + 5859834 + ], + [ + 2097884, + 5859845 + ], + [ + 2097891, + 5859855 + ], + [ + 2097899, + 5859866 + ], + [ + 2097905, + 5859877 + ], + [ + 2097913, + 5859885 + ], + [ + 2097919, + 5859896 + ], + [ + 2097927, + 5859907 + ], + [ + 2097934, + 5859917 + ], + [ + 2097941, + 5859927 + ], + [ + 2097947, + 5859938 + ], + [ + 2097954, + 5859948 + ], + [ + 2097962, + 5859959 + ], + [ + 2097968, + 5859969 + ], + [ + 2097975, + 5859980 + ], + [ + 2097982, + 5859991 + ], + [ + 2097989, + 5860001 + ], + [ + 2097995, + 5860011 + ], + [ + 2098003, + 5860022 + ], + [ + 2098009, + 5860033 + ], + [ + 2098017, + 5860043 + ], + [ + 2098023, + 5860053 + ], + [ + 2098031, + 5860064 + ], + [ + 2098038, + 5860074 + ], + [ + 2098045, + 5860085 + ], + [ + 2098052, + 5860095 + ], + [ + 2098060, + 5860105 + ], + [ + 2098067, + 5860116 + ], + [ + 2098073, + 5860127 + ], + [ + 2098081, + 5860136 + ], + [ + 2098088, + 5860147 + ], + [ + 2098095, + 5860158 + ], + [ + 2098102, + 5860166 + ], + [ + 2098109, + 5860177 + ], + [ + 2098115, + 5860188 + ], + [ + 2098123, + 5860198 + ], + [ + 2098129, + 5860208 + ], + [ + 2098136, + 5860219 + ], + [ + 2098144, + 5860229 + ], + [ + 2098150, + 5860239 + ], + [ + 2098157, + 5860249 + ], + [ + 2098165, + 5860259 + ], + [ + 2098172, + 5860270 + ], + [ + 2098179, + 5860281 + ], + [ + 2098187, + 5860290 + ], + [ + 2098194, + 5860301 + ], + [ + 2098201, + 5860312 + ], + [ + 2098209, + 5860322 + ], + [ + 2098216, + 5860332 + ], + [ + 2098222, + 5860342 + ], + [ + 2098230, + 5860353 + ], + [ + 2098237, + 5860363 + ], + [ + 2098243, + 5860373 + ], + [ + 2098251, + 5860384 + ], + [ + 2098257, + 5860394 + ], + [ + 2098265, + 5860404 + ], + [ + 2098272, + 5860414 + ], + [ + 2098279, + 5860425 + ], + [ + 2098286, + 5860436 + ], + [ + 2098294, + 5860445 + ], + [ + 2098301, + 5860456 + ], + [ + 2098308, + 5860467 + ], + [ + 2098315, + 5860477 + ], + [ + 2098322, + 5860487 + ], + [ + 2098329, + 5860498 + ], + [ + 2098335, + 5860508 + ], + [ + 2098342, + 5860519 + ], + [ + 2098349, + 5860529 + ], + [ + 2098356, + 5860539 + ], + [ + 2098363, + 5860550 + ], + [ + 2098370, + 5860561 + ], + [ + 2098377, + 5860570 + ], + [ + 2098385, + 5860581 + ], + [ + 2098391, + 5860592 + ], + [ + 2098399, + 5860602 + ], + [ + 2098405, + 5860612 + ], + [ + 2098413, + 5860623 + ], + [ + 2098419, + 5860633 + ], + [ + 2098426, + 5860644 + ], + [ + 2098433, + 5860654 + ], + [ + 2098439, + 5860664 + ], + [ + 2098447, + 5860675 + ], + [ + 2098453, + 5860686 + ], + [ + 2098460, + 5860696 + ], + [ + 2098467, + 5860707 + ], + [ + 2098474, + 5860717 + ], + [ + 2098481, + 5860728 + ], + [ + 2098489, + 5860737 + ], + [ + 2098495, + 5860748 + ], + [ + 2098503, + 5860758 + ], + [ + 2098510, + 5860768 + ], + [ + 2098517, + 5860779 + ], + [ + 2098524, + 5860789 + ], + [ + 2098532, + 5860800 + ], + [ + 2098538, + 5860810 + ], + [ + 2098545, + 5860820 + ], + [ + 2098552, + 5860831 + ], + [ + 2098559, + 5860841 + ], + [ + 2098567, + 5860851 + ], + [ + 2098573, + 5860862 + ], + [ + 2098581, + 5860872 + ], + [ + 2098588, + 5860882 + ], + [ + 2098596, + 5860892 + ], + [ + 2098602, + 5860903 + ], + [ + 2098610, + 5860913 + ], + [ + 2098616, + 5860924 + ], + [ + 2098624, + 5860934 + ], + [ + 2098631, + 5860944 + ], + [ + 2098637, + 5860955 + ], + [ + 2098644, + 5860966 + ], + [ + 2098651, + 5860975 + ], + [ + 2098658, + 5860986 + ], + [ + 2098665, + 5860996 + ], + [ + 2098673, + 5861006 + ], + [ + 2098679, + 5861016 + ], + [ + 2098687, + 5861027 + ], + [ + 2098694, + 5861038 + ], + [ + 2098701, + 5861048 + ], + [ + 2098708, + 5861058 + ], + [ + 2098716, + 5861069 + ], + [ + 2098722, + 5861080 + ], + [ + 2098729, + 5861090 + ], + [ + 2098736, + 5861100 + ], + [ + 2098742, + 5861111 + ], + [ + 2098749, + 5861122 + ], + [ + 2098756, + 5861131 + ], + [ + 2098764, + 5861142 + ], + [ + 2098770, + 5861153 + ], + [ + 2098778, + 5861162 + ], + [ + 2098785, + 5861172 + ], + [ + 2098792, + 5861183 + ], + [ + 2098799, + 5861193 + ], + [ + 2098807, + 5861204 + ], + [ + 2098813, + 5861214 + ], + [ + 2098821, + 5861224 + ], + [ + 2098827, + 5861235 + ], + [ + 2098835, + 5861245 + ], + [ + 2098841, + 5861256 + ], + [ + 2098847, + 5861267 + ], + [ + 2098855, + 5861277 + ], + [ + 2098861, + 5861288 + ], + [ + 2098868, + 5861298 + ], + [ + 2098875, + 5861308 + ], + [ + 2098882, + 5861319 + ], + [ + 2098889, + 5861329 + ], + [ + 2098896, + 5861340 + ], + [ + 2098903, + 5861350 + ], + [ + 2098910, + 5861361 + ], + [ + 2098916, + 5861372 + ], + [ + 2098925, + 5861381 + ], + [ + 2098931, + 5861392 + ], + [ + 2098938, + 5861402 + ], + [ + 2098946, + 5861411 + ], + [ + 2098952, + 5861422 + ], + [ + 2098959, + 5861433 + ], + [ + 2098966, + 5861443 + ], + [ + 2098973, + 5861453 + ], + [ + 2098980, + 5861464 + ], + [ + 2098987, + 5861475 + ], + [ + 2098993, + 5861485 + ], + [ + 2099001, + 5861495 + ], + [ + 2099007, + 5861506 + ], + [ + 2099015, + 5861517 + ], + [ + 2099021, + 5861528 + ], + [ + 2099030, + 5861536 + ], + [ + 2099036, + 5861547 + ], + [ + 2099042, + 5861558 + ], + [ + 2099050, + 5861568 + ], + [ + 2099057, + 5861578 + ], + [ + 2099064, + 5861589 + ], + [ + 2099071, + 5861599 + ], + [ + 2099079, + 5861610 + ], + [ + 2099085, + 5861620 + ], + [ + 2099093, + 5861630 + ], + [ + 2099100, + 5861641 + ], + [ + 2099107, + 5861652 + ], + [ + 2099114, + 5861661 + ], + [ + 2099122, + 5861672 + ], + [ + 2099128, + 5861683 + ], + [ + 2099136, + 5861692 + ], + [ + 2099142, + 5861703 + ], + [ + 2099149, + 5861713 + ], + [ + 2099156, + 5861724 + ], + [ + 2099163, + 5861733 + ], + [ + 2099170, + 5861744 + ], + [ + 2099177, + 5861755 + ], + [ + 2099184, + 5861766 + ], + [ + 2099191, + 5861775 + ], + [ + 2099198, + 5861786 + ], + [ + 2099204, + 5861797 + ], + [ + 2099212, + 5861807 + ], + [ + 2099218, + 5861817 + ], + [ + 2099226, + 5861828 + ], + [ + 2099232, + 5861838 + ], + [ + 2099239, + 5861849 + ], + [ + 2099246, + 5861858 + ], + [ + 2099253, + 5861869 + ], + [ + 2099260, + 5861880 + ], + [ + 2099267, + 5861891 + ], + [ + 2099274, + 5861900 + ], + [ + 2099281, + 5861911 + ], + [ + 2099288, + 5861922 + ], + [ + 2099295, + 5861932 + ], + [ + 2099303, + 5861942 + ], + [ + 2099309, + 5861953 + ], + [ + 2099316, + 5861963 + ], + [ + 2099323, + 5861974 + ], + [ + 2099331, + 5861984 + ], + [ + 2099337, + 5861995 + ], + [ + 2099344, + 5862005 + ], + [ + 2099352, + 5862015 + ], + [ + 2099358, + 5862025 + ], + [ + 2099366, + 5862036 + ], + [ + 2099372, + 5862047 + ], + [ + 2099380, + 5862057 + ], + [ + 2099387, + 5862067 + ], + [ + 2099394, + 5862078 + ], + [ + 2099400, + 5862088 + ], + [ + 2099408, + 5862098 + ], + [ + 2099415, + 5862108 + ], + [ + 2099422, + 5862119 + ], + [ + 2099429, + 5862130 + ], + [ + 2099436, + 5862139 + ], + [ + 2099443, + 5862150 + ], + [ + 2099449, + 5862161 + ], + [ + 2099457, + 5862171 + ], + [ + 2099463, + 5862181 + ], + [ + 2099471, + 5862191 + ], + [ + 2099477, + 5862202 + ], + [ + 2099485, + 5862213 + ], + [ + 2099492, + 5862222 + ], + [ + 2099499, + 5862233 + ], + [ + 2099506, + 5862244 + ], + [ + 2099514, + 5862254 + ], + [ + 2099520, + 5862264 + ], + [ + 2099528, + 5862274 + ], + [ + 2099534, + 5862285 + ], + [ + 2099540, + 5862296 + ], + [ + 2099548, + 5862305 + ], + [ + 2099554, + 5862316 + ], + [ + 2099561, + 5862327 + ], + [ + 2099568, + 5862338 + ], + [ + 2099575, + 5862347 + ], + [ + 2099582, + 5862358 + ], + [ + 2099589, + 5862369 + ], + [ + 2099596, + 5862380 + ], + [ + 2099603, + 5862389 + ], + [ + 2099609, + 5862400 + ], + [ + 2099617, + 5862411 + ], + [ + 2099623, + 5862422 + ], + [ + 2099630, + 5862432 + ], + [ + 2099636, + 5862443 + ], + [ + 2099644, + 5862454 + ], + [ + 2099650, + 5862464 + ], + [ + 2099657, + 5862474 + ], + [ + 2099664, + 5862485 + ], + [ + 2099671, + 5862496 + ], + [ + 2099679, + 5862505 + ], + [ + 2099685, + 5862516 + ], + [ + 2099692, + 5862527 + ], + [ + 2099700, + 5862537 + ], + [ + 2099707, + 5862547 + ], + [ + 2099714, + 5862558 + ], + [ + 2099722, + 5862568 + ], + [ + 2099728, + 5862579 + ], + [ + 2099736, + 5862588 + ], + [ + 2099742, + 5862599 + ], + [ + 2099750, + 5862610 + ], + [ + 2099756, + 5862620 + ], + [ + 2099763, + 5862629 + ], + [ + 2099771, + 5862640 + ], + [ + 2099777, + 5862651 + ], + [ + 2099785, + 5862661 + ], + [ + 2099792, + 5862670 + ], + [ + 2099799, + 5862681 + ], + [ + 2099807, + 5862691 + ], + [ + 2099815, + 5862700 + ], + [ + 2099822, + 5862711 + ], + [ + 2099829, + 5862721 + ], + [ + 2099836, + 5862732 + ], + [ + 2099842, + 5862742 + ], + [ + 2099851, + 5862752 + ], + [ + 2099857, + 5862763 + ], + [ + 2099865, + 5862773 + ], + [ + 2099872, + 5862783 + ], + [ + 2099879, + 5862793 + ], + [ + 2099886, + 5862804 + ], + [ + 2099893, + 5862814 + ], + [ + 2099900, + 5862824 + ], + [ + 2099907, + 5862835 + ], + [ + 2099914, + 5862845 + ], + [ + 2099921, + 5862856 + ], + [ + 2099928, + 5862866 + ], + [ + 2099934, + 5862876 + ], + [ + 2099942, + 5862887 + ], + [ + 2099948, + 5862898 + ], + [ + 2099956, + 5862907 + ], + [ + 2099963, + 5862918 + ], + [ + 2099970, + 5862929 + ], + [ + 2099977, + 5862938 + ], + [ + 2099985, + 5862949 + ], + [ + 2099991, + 5862960 + ], + [ + 2099999, + 5862970 + ], + [ + 2100005, + 5862980 + ], + [ + 2100013, + 5862990 + ], + [ + 2100019, + 5863001 + ], + [ + 2100027, + 5863012 + ], + [ + 2100033, + 5863022 + ], + [ + 2100040, + 5863032 + ], + [ + 2100047, + 5863043 + ], + [ + 2100054, + 5863054 + ], + [ + 2100061, + 5863063 + ], + [ + 2100068, + 5863073 + ], + [ + 2100075, + 5863084 + ], + [ + 2100082, + 5863094 + ], + [ + 2100090, + 5863104 + ], + [ + 2100096, + 5863115 + ], + [ + 2100104, + 5863125 + ], + [ + 2100110, + 5863136 + ], + [ + 2100118, + 5863146 + ], + [ + 2100125, + 5863156 + ], + [ + 2100132, + 5863167 + ], + [ + 2100139, + 5863178 + ], + [ + 2100145, + 5863188 + ], + [ + 2100152, + 5863198 + ], + [ + 2100159, + 5863209 + ], + [ + 2100166, + 5863220 + ], + [ + 2100172, + 5863230 + ], + [ + 2100180, + 5863241 + ], + [ + 2100186, + 5863251 + ], + [ + 2100194, + 5863262 + ], + [ + 2100200, + 5863272 + ], + [ + 2100208, + 5863282 + ], + [ + 2100214, + 5863293 + ], + [ + 2100222, + 5863304 + ], + [ + 2100229, + 5863313 + ], + [ + 2100236, + 5863323 + ], + [ + 2100243, + 5863334 + ], + [ + 2100250, + 5863344 + ], + [ + 2100257, + 5863354 + ], + [ + 2100263, + 5863365 + ], + [ + 2100271, + 5863375 + ], + [ + 2100278, + 5863385 + ], + [ + 2100285, + 5863396 + ], + [ + 2100291, + 5863407 + ], + [ + 2100298, + 5863418 + ], + [ + 2100305, + 5863427 + ], + [ + 2100312, + 5863438 + ], + [ + 2100319, + 5863448 + ], + [ + 2100326, + 5863459 + ], + [ + 2100333, + 5863469 + ], + [ + 2100340, + 5863479 + ], + [ + 2100347, + 5863490 + ], + [ + 2100354, + 5863500 + ], + [ + 2100362, + 5863510 + ], + [ + 2100368, + 5863521 + ], + [ + 2100377, + 5863531 + ], + [ + 2100383, + 5863542 + ], + [ + 2100391, + 5863552 + ], + [ + 2100398, + 5863562 + ], + [ + 2100406, + 5863573 + ], + [ + 2100412, + 5863584 + ], + [ + 2100421, + 5863592 + ], + [ + 2100427, + 5863603 + ], + [ + 2100434, + 5863614 + ], + [ + 2100442, + 5863623 + ], + [ + 2100448, + 5863634 + ], + [ + 2100456, + 5863645 + ], + [ + 2100463, + 5863655 + ], + [ + 2100470, + 5863664 + ], + [ + 2100477, + 5863675 + ], + [ + 2100484, + 5863685 + ], + [ + 2100491, + 5863696 + ], + [ + 2100498, + 5863706 + ], + [ + 2100504, + 5863717 + ], + [ + 2100512, + 5863727 + ], + [ + 2100519, + 5863738 + ], + [ + 2100526, + 5863748 + ], + [ + 2100532, + 5863759 + ], + [ + 2100539, + 5863769 + ], + [ + 2100547, + 5863780 + ], + [ + 2100553, + 5863789 + ], + [ + 2100561, + 5863800 + ], + [ + 2100568, + 5863810 + ], + [ + 2100575, + 5863821 + ], + [ + 2100582, + 5863831 + ], + [ + 2100590, + 5863841 + ], + [ + 2100596, + 5863852 + ], + [ + 2100604, + 5863861 + ], + [ + 2100611, + 5863872 + ], + [ + 2100618, + 5863882 + ], + [ + 2100625, + 5863893 + ], + [ + 2100632, + 5863902 + ], + [ + 2100639, + 5863913 + ], + [ + 2100646, + 5863924 + ], + [ + 2100654, + 5863934 + ], + [ + 2100661, + 5863944 + ], + [ + 2100668, + 5863954 + ], + [ + 2100675, + 5863964 + ], + [ + 2100682, + 5863975 + ], + [ + 2100689, + 5863985 + ], + [ + 2100696, + 5863996 + ], + [ + 2100703, + 5864006 + ], + [ + 2100710, + 5864017 + ], + [ + 2100716, + 5864027 + ], + [ + 2100723, + 5864038 + ], + [ + 2100730, + 5864048 + ], + [ + 2100736, + 5864059 + ], + [ + 2100744, + 5864069 + ], + [ + 2100751, + 5864080 + ], + [ + 2100758, + 5864090 + ], + [ + 2100765, + 5864101 + ], + [ + 2100772, + 5864111 + ], + [ + 2100779, + 5864121 + ], + [ + 2100787, + 5864132 + ], + [ + 2100793, + 5864141 + ], + [ + 2100802, + 5864151 + ], + [ + 2100809, + 5864162 + ], + [ + 2100816, + 5864173 + ], + [ + 2100823, + 5864182 + ], + [ + 2100829, + 5864193 + ], + [ + 2100837, + 5864204 + ], + [ + 2100843, + 5864214 + ], + [ + 2100850, + 5864224 + ], + [ + 2100857, + 5864235 + ], + [ + 2100864, + 5864245 + ], + [ + 2100871, + 5864256 + ], + [ + 2100878, + 5864266 + ], + [ + 2100885, + 5864276 + ], + [ + 2100892, + 5864287 + ], + [ + 2100899, + 5864298 + ], + [ + 2100907, + 5864307 + ], + [ + 2100913, + 5864318 + ], + [ + 2100920, + 5864329 + ], + [ + 2100926, + 5864340 + ], + [ + 2100933, + 5864349 + ], + [ + 2100940, + 5864360 + ], + [ + 2100947, + 5864371 + ], + [ + 2100954, + 5864381 + ], + [ + 2100961, + 5864391 + ], + [ + 2100968, + 5864402 + ], + [ + 2100975, + 5864412 + ], + [ + 2100982, + 5864423 + ], + [ + 2100990, + 5864432 + ], + [ + 2100997, + 5864443 + ], + [ + 2101004, + 5864454 + ], + [ + 2101012, + 5864463 + ], + [ + 2101018, + 5864474 + ], + [ + 2101025, + 5864485 + ], + [ + 2101033, + 5864495 + ], + [ + 2101039, + 5864505 + ], + [ + 2101047, + 5864516 + ], + [ + 2101053, + 5864526 + ], + [ + 2101061, + 5864537 + ], + [ + 2101067, + 5864546 + ], + [ + 2101075, + 5864557 + ], + [ + 2101081, + 5864568 + ], + [ + 2101089, + 5864579 + ], + [ + 2101096, + 5864588 + ], + [ + 2101103, + 5864598 + ], + [ + 2101110, + 5864609 + ], + [ + 2101117, + 5864620 + ], + [ + 2101123, + 5864630 + ], + [ + 2101130, + 5864640 + ], + [ + 2101137, + 5864650 + ], + [ + 2101144, + 5864661 + ], + [ + 2101152, + 5864671 + ], + [ + 2101158, + 5864681 + ], + [ + 2101166, + 5864692 + ], + [ + 2101172, + 5864702 + ], + [ + 2101180, + 5864712 + ], + [ + 2101187, + 5864722 + ], + [ + 2101194, + 5864733 + ], + [ + 2101201, + 5864744 + ], + [ + 2101208, + 5864754 + ], + [ + 2101215, + 5864764 + ], + [ + 2101221, + 5864775 + ], + [ + 2101229, + 5864785 + ], + [ + 2101235, + 5864796 + ], + [ + 2101243, + 5864807 + ], + [ + 2101249, + 5864817 + ], + [ + 2101257, + 5864827 + ], + [ + 2101263, + 5864838 + ], + [ + 2101271, + 5864849 + ], + [ + 2101277, + 5864859 + ], + [ + 2101285, + 5864869 + ], + [ + 2101291, + 5864879 + ], + [ + 2101299, + 5864890 + ], + [ + 2101305, + 5864901 + ], + [ + 2101313, + 5864910 + ], + [ + 2101319, + 5864921 + ], + [ + 2101326, + 5864931 + ], + [ + 2101334, + 5864942 + ], + [ + 2101340, + 5864952 + ], + [ + 2101348, + 5864962 + ], + [ + 2101354, + 5864973 + ], + [ + 2101362, + 5864984 + ], + [ + 2101368, + 5864993 + ], + [ + 2101376, + 5865004 + ], + [ + 2101383, + 5865015 + ], + [ + 2101390, + 5865025 + ], + [ + 2101396, + 5865035 + ], + [ + 2101404, + 5865046 + ], + [ + 2101411, + 5865056 + ], + [ + 2101418, + 5865067 + ], + [ + 2101425, + 5865076 + ], + [ + 2101431, + 5865087 + ], + [ + 2101439, + 5865098 + ], + [ + 2101445, + 5865108 + ], + [ + 2101453, + 5865118 + ], + [ + 2101459, + 5865129 + ], + [ + 2101467, + 5865139 + ], + [ + 2101473, + 5865150 + ], + [ + 2101481, + 5865160 + ], + [ + 2101487, + 5865171 + ], + [ + 2101495, + 5865181 + ], + [ + 2101501, + 5865192 + ], + [ + 2101509, + 5865202 + ], + [ + 2101516, + 5865212 + ], + [ + 2101522, + 5865223 + ], + [ + 2101530, + 5865233 + ], + [ + 2101536, + 5865243 + ], + [ + 2101544, + 5865254 + ], + [ + 2101550, + 5865265 + ], + [ + 2101559, + 5865273 + ], + [ + 2101565, + 5865284 + ], + [ + 2101573, + 5865295 + ], + [ + 2101580, + 5865305 + ], + [ + 2101587, + 5865315 + ], + [ + 2101594, + 5865326 + ], + [ + 2101601, + 5865336 + ], + [ + 2101608, + 5865346 + ], + [ + 2101614, + 5865356 + ], + [ + 2101622, + 5865366 + ], + [ + 2101629, + 5865377 + ], + [ + 2101636, + 5865388 + ], + [ + 2101643, + 5865398 + ], + [ + 2101650, + 5865408 + ], + [ + 2101657, + 5865419 + ], + [ + 2101664, + 5865430 + ], + [ + 2101671, + 5865439 + ], + [ + 2101679, + 5865450 + ], + [ + 2101685, + 5865461 + ], + [ + 2101692, + 5865471 + ], + [ + 2101699, + 5865481 + ], + [ + 2101706, + 5865491 + ], + [ + 2101714, + 5865502 + ], + [ + 2101720, + 5865512 + ], + [ + 2101727, + 5865523 + ], + [ + 2101734, + 5865533 + ], + [ + 2101741, + 5865544 + ], + [ + 2101747, + 5865554 + ], + [ + 2101755, + 5865564 + ], + [ + 2101762, + 5865575 + ], + [ + 2101769, + 5865586 + ], + [ + 2101776, + 5865595 + ], + [ + 2101784, + 5865606 + ], + [ + 2101790, + 5865616 + ], + [ + 2101798, + 5865627 + ], + [ + 2101804, + 5865637 + ], + [ + 2101811, + 5865647 + ], + [ + 2101819, + 5865658 + ], + [ + 2101825, + 5865668 + ], + [ + 2101833, + 5865678 + ], + [ + 2101839, + 5865689 + ], + [ + 2101847, + 5865700 + ], + [ + 2101853, + 5865710 + ], + [ + 2101861, + 5865720 + ], + [ + 2101867, + 5865730 + ], + [ + 2101875, + 5865741 + ], + [ + 2101882, + 5865751 + ], + [ + 2101889, + 5865761 + ], + [ + 2101896, + 5865771 + ], + [ + 2101904, + 5865782 + ], + [ + 2101910, + 5865792 + ], + [ + 2101917, + 5865802 + ], + [ + 2101925, + 5865813 + ], + [ + 2101931, + 5865824 + ], + [ + 2101939, + 5865833 + ], + [ + 2101945, + 5865844 + ], + [ + 2101953, + 5865855 + ], + [ + 2101959, + 5865865 + ], + [ + 2101967, + 5865875 + ], + [ + 2101973, + 5865886 + ], + [ + 2101981, + 5865896 + ], + [ + 2101987, + 5865907 + ], + [ + 2101995, + 5865917 + ], + [ + 2102001, + 5865927 + ], + [ + 2102008, + 5865938 + ], + [ + 2102015, + 5865949 + ], + [ + 2102022, + 5865958 + ], + [ + 2102029, + 5865969 + ], + [ + 2102036, + 5865980 + ], + [ + 2102043, + 5865990 + ], + [ + 2102050, + 5866000 + ], + [ + 2102057, + 5866011 + ], + [ + 2102063, + 5866022 + ], + [ + 2102071, + 5866032 + ], + [ + 2102077, + 5866042 + ], + [ + 2102084, + 5866053 + ], + [ + 2102091, + 5866064 + ], + [ + 2102098, + 5866074 + ], + [ + 2102105, + 5866083 + ], + [ + 2102112, + 5866094 + ], + [ + 2102119, + 5866105 + ], + [ + 2102127, + 5866115 + ], + [ + 2102134, + 5866124 + ], + [ + 2102141, + 5866135 + ], + [ + 2102148, + 5866146 + ], + [ + 2102154, + 5866157 + ], + [ + 2102162, + 5866166 + ], + [ + 2102168, + 5866178 + ], + [ + 2102176, + 5866188 + ], + [ + 2102182, + 5866199 + ], + [ + 2102190, + 5866209 + ], + [ + 2102196, + 5866219 + ], + [ + 2102204, + 5866230 + ], + [ + 2102210, + 5866240 + ], + [ + 2102217, + 5866250 + ], + [ + 2102224, + 5866261 + ], + [ + 2102231, + 5866272 + ], + [ + 2102238, + 5866281 + ], + [ + 2102245, + 5866292 + ], + [ + 2102252, + 5866303 + ], + [ + 2102259, + 5866313 + ], + [ + 2102266, + 5866323 + ], + [ + 2102273, + 5866334 + ], + [ + 2102280, + 5866345 + ], + [ + 2102287, + 5866355 + ], + [ + 2102294, + 5866365 + ], + [ + 2102301, + 5866375 + ], + [ + 2102308, + 5866386 + ], + [ + 2102315, + 5866397 + ], + [ + 2102322, + 5866406 + ], + [ + 2102329, + 5866417 + ], + [ + 2102336, + 5866427 + ], + [ + 2102343, + 5866438 + ], + [ + 2102350, + 5866448 + ], + [ + 2102358, + 5866458 + ], + [ + 2102364, + 5866469 + ], + [ + 2102372, + 5866479 + ], + [ + 2102378, + 5866489 + ], + [ + 2102386, + 5866500 + ], + [ + 2102393, + 5866510 + ], + [ + 2102400, + 5866521 + ], + [ + 2102407, + 5866531 + ], + [ + 2102414, + 5866541 + ], + [ + 2102421, + 5866552 + ], + [ + 2102428, + 5866561 + ], + [ + 2102435, + 5866572 + ], + [ + 2102442, + 5866582 + ], + [ + 2102450, + 5866593 + ], + [ + 2102457, + 5866603 + ], + [ + 2102465, + 5866613 + ], + [ + 2102471, + 5866623 + ], + [ + 2102479, + 5866634 + ], + [ + 2102486, + 5866643 + ], + [ + 2102493, + 5866654 + ], + [ + 2102500, + 5866665 + ], + [ + 2102507, + 5866675 + ], + [ + 2102514, + 5866684 + ], + [ + 2102521, + 5866695 + ], + [ + 2102529, + 5866705 + ], + [ + 2102536, + 5866715 + ], + [ + 2102543, + 5866726 + ], + [ + 2102551, + 5866736 + ], + [ + 2102558, + 5866746 + ], + [ + 2102565, + 5866756 + ], + [ + 2102574, + 5866766 + ], + [ + 2102581, + 5866776 + ], + [ + 2102588, + 5866787 + ], + [ + 2102597, + 5866795 + ], + [ + 2102603, + 5866806 + ], + [ + 2102611, + 5866817 + ], + [ + 2102618, + 5866825 + ], + [ + 2102626, + 5866836 + ], + [ + 2102633, + 5866847 + ], + [ + 2102641, + 5866857 + ], + [ + 2102648, + 5866866 + ], + [ + 2102656, + 5866877 + ], + [ + 2102663, + 5866887 + ], + [ + 2102669, + 5866897 + ], + [ + 2102677, + 5866907 + ], + [ + 2102683, + 5866917 + ], + [ + 2102691, + 5866928 + ], + [ + 2102698, + 5866938 + ], + [ + 2102706, + 5866948 + ], + [ + 2102713, + 5866958 + ], + [ + 2102721, + 5866969 + ], + [ + 2102727, + 5866979 + ], + [ + 2102734, + 5866990 + ], + [ + 2102741, + 5867001 + ], + [ + 2102749, + 5867011 + ], + [ + 2102756, + 5867020 + ], + [ + 2102763, + 5867031 + ], + [ + 2102769, + 5867042 + ], + [ + 2102775, + 5867053 + ], + [ + 2102783, + 5867062 + ], + [ + 2102790, + 5867073 + ], + [ + 2102797, + 5867083 + ], + [ + 2102804, + 5867094 + ], + [ + 2102811, + 5867104 + ], + [ + 2102818, + 5867115 + ], + [ + 2102825, + 5867125 + ], + [ + 2102832, + 5867136 + ], + [ + 2102840, + 5867145 + ], + [ + 2102847, + 5867156 + ], + [ + 2102853, + 5867166 + ], + [ + 2102861, + 5867177 + ], + [ + 2102867, + 5867187 + ], + [ + 2102875, + 5867197 + ], + [ + 2102881, + 5867208 + ], + [ + 2102889, + 5867218 + ], + [ + 2102895, + 5867229 + ], + [ + 2102902, + 5867239 + ], + [ + 2102909, + 5867250 + ], + [ + 2102916, + 5867261 + ], + [ + 2102922, + 5867271 + ], + [ + 2102930, + 5867282 + ], + [ + 2102936, + 5867292 + ], + [ + 2102944, + 5867302 + ], + [ + 2102950, + 5867312 + ], + [ + 2102957, + 5867323 + ], + [ + 2102965, + 5867333 + ], + [ + 2102971, + 5867343 + ], + [ + 2102980, + 5867353 + ], + [ + 2102986, + 5867364 + ], + [ + 2102994, + 5867375 + ], + [ + 2103000, + 5867385 + ], + [ + 2103008, + 5867395 + ], + [ + 2103014, + 5867406 + ], + [ + 2103021, + 5867417 + ], + [ + 2103028, + 5867427 + ], + [ + 2103035, + 5867438 + ], + [ + 2103042, + 5867448 + ], + [ + 2103049, + 5867459 + ], + [ + 2103056, + 5867468 + ], + [ + 2103062, + 5867479 + ], + [ + 2103070, + 5867489 + ], + [ + 2103076, + 5867500 + ], + [ + 2103083, + 5867510 + ], + [ + 2103090, + 5867521 + ], + [ + 2103097, + 5867532 + ], + [ + 2103104, + 5867542 + ], + [ + 2103112, + 5867551 + ], + [ + 2103118, + 5867562 + ], + [ + 2103125, + 5867573 + ], + [ + 2103132, + 5867584 + ], + [ + 2103139, + 5867593 + ], + [ + 2103146, + 5867604 + ], + [ + 2103152, + 5867614 + ], + [ + 2103160, + 5867625 + ], + [ + 2103166, + 5867635 + ], + [ + 2103173, + 5867646 + ], + [ + 2103180, + 5867657 + ], + [ + 2103188, + 5867667 + ], + [ + 2103194, + 5867677 + ], + [ + 2103201, + 5867688 + ], + [ + 2103208, + 5867698 + ], + [ + 2103215, + 5867709 + ], + [ + 2103222, + 5867719 + ], + [ + 2103229, + 5867730 + ], + [ + 2103236, + 5867741 + ], + [ + 2103243, + 5867752 + ], + [ + 2103249, + 5867761 + ], + [ + 2103257, + 5867772 + ], + [ + 2103263, + 5867783 + ], + [ + 2103270, + 5867793 + ], + [ + 2103277, + 5867803 + ], + [ + 2103283, + 5867814 + ], + [ + 2103291, + 5867824 + ], + [ + 2103298, + 5867835 + ], + [ + 2103305, + 5867845 + ], + [ + 2103312, + 5867855 + ], + [ + 2103319, + 5867866 + ], + [ + 2103326, + 5867875 + ], + [ + 2103334, + 5867885 + ], + [ + 2103340, + 5867896 + ], + [ + 2103348, + 5867907 + ], + [ + 2103355, + 5867916 + ], + [ + 2103363, + 5867927 + ], + [ + 2103369, + 5867938 + ], + [ + 2103376, + 5867948 + ], + [ + 2103384, + 5867957 + ], + [ + 2103390, + 5867968 + ], + [ + 2103399, + 5867978 + ], + [ + 2103405, + 5867989 + ], + [ + 2103412, + 5867999 + ], + [ + 2103420, + 5868009 + ], + [ + 2103427, + 5868020 + ], + [ + 2103434, + 5868030 + ], + [ + 2103442, + 5868039 + ], + [ + 2103449, + 5868050 + ], + [ + 2103455, + 5868061 + ], + [ + 2103464, + 5868070 + ], + [ + 2103470, + 5868081 + ], + [ + 2103478, + 5868091 + ], + [ + 2103485, + 5868101 + ], + [ + 2103492, + 5868111 + ], + [ + 2103499, + 5868122 + ], + [ + 2103506, + 5868132 + ], + [ + 2103513, + 5868143 + ], + [ + 2103520, + 5868153 + ], + [ + 2103527, + 5868163 + ], + [ + 2103534, + 5868174 + ], + [ + 2103541, + 5868185 + ], + [ + 2103547, + 5868194 + ], + [ + 2103555, + 5868205 + ], + [ + 2103561, + 5868216 + ], + [ + 2103569, + 5868226 + ], + [ + 2103575, + 5868236 + ], + [ + 2103583, + 5868247 + ], + [ + 2103590, + 5868257 + ], + [ + 2103597, + 5868268 + ], + [ + 2103603, + 5868278 + ], + [ + 2103611, + 5868288 + ], + [ + 2103618, + 5868299 + ], + [ + 2103625, + 5868310 + ], + [ + 2103631, + 5868319 + ], + [ + 2103639, + 5868330 + ], + [ + 2103645, + 5868341 + ], + [ + 2103652, + 5868350 + ], + [ + 2103660, + 5868361 + ], + [ + 2103666, + 5868372 + ], + [ + 2103673, + 5868382 + ], + [ + 2103680, + 5868392 + ], + [ + 2103687, + 5868403 + ], + [ + 2103694, + 5868414 + ], + [ + 2103701, + 5868425 + ], + [ + 2103707, + 5868434 + ], + [ + 2103715, + 5868445 + ], + [ + 2103721, + 5868456 + ], + [ + 2103729, + 5868467 + ], + [ + 2103736, + 5868476 + ], + [ + 2103743, + 5868487 + ], + [ + 2103750, + 5868498 + ], + [ + 2103756, + 5868508 + ], + [ + 2103763, + 5868518 + ], + [ + 2103770, + 5868529 + ], + [ + 2103777, + 5868539 + ], + [ + 2103784, + 5868550 + ], + [ + 2103791, + 5868560 + ], + [ + 2103798, + 5868570 + ], + [ + 2103805, + 5868581 + ], + [ + 2103812, + 5868592 + ], + [ + 2103820, + 5868601 + ], + [ + 2103826, + 5868612 + ], + [ + 2103834, + 5868622 + ], + [ + 2103841, + 5868633 + ], + [ + 2103847, + 5868642 + ], + [ + 2103855, + 5868653 + ], + [ + 2103862, + 5868663 + ], + [ + 2103869, + 5868674 + ], + [ + 2103875, + 5868684 + ], + [ + 2103884, + 5868694 + ], + [ + 2103891, + 5868704 + ], + [ + 2103898, + 5868715 + ], + [ + 2103905, + 5868725 + ], + [ + 2103912, + 5868735 + ], + [ + 2103918, + 5868746 + ], + [ + 2103926, + 5868756 + ], + [ + 2103933, + 5868767 + ], + [ + 2103940, + 5868777 + ], + [ + 2103947, + 5868788 + ], + [ + 2103953, + 5868798 + ], + [ + 2103961, + 5868808 + ], + [ + 2103968, + 5868818 + ], + [ + 2103976, + 5868829 + ], + [ + 2103982, + 5868839 + ], + [ + 2103991, + 5868848 + ], + [ + 2103997, + 5868859 + ], + [ + 2104005, + 5868870 + ], + [ + 2104012, + 5868879 + ], + [ + 2104019, + 5868890 + ], + [ + 2104026, + 5868901 + ], + [ + 2104033, + 5868910 + ], + [ + 2104040, + 5868920 + ], + [ + 2104047, + 5868931 + ], + [ + 2104054, + 5868942 + ], + [ + 2104061, + 5868952 + ], + [ + 2104068, + 5868962 + ], + [ + 2104075, + 5868973 + ], + [ + 2104083, + 5868983 + ], + [ + 2104089, + 5868993 + ], + [ + 2104097, + 5869004 + ], + [ + 2104103, + 5869015 + ], + [ + 2104110, + 5869025 + ], + [ + 2104118, + 5869035 + ], + [ + 2104125, + 5869045 + ], + [ + 2104131, + 5869056 + ], + [ + 2104137, + 5869067 + ], + [ + 2104145, + 5869077 + ], + [ + 2104151, + 5869088 + ], + [ + 2104159, + 5869098 + ], + [ + 2104165, + 5869109 + ], + [ + 2104172, + 5869119 + ], + [ + 2104179, + 5869129 + ], + [ + 2104186, + 5869140 + ], + [ + 2104193, + 5869151 + ], + [ + 2104201, + 5869161 + ], + [ + 2104207, + 5869172 + ], + [ + 2104214, + 5869183 + ], + [ + 2104220, + 5869193 + ], + [ + 2104228, + 5869203 + ], + [ + 2104234, + 5869214 + ], + [ + 2104242, + 5869224 + ], + [ + 2104248, + 5869235 + ], + [ + 2104255, + 5869245 + ], + [ + 2104263, + 5869254 + ], + [ + 2104269, + 5869265 + ], + [ + 2104276, + 5869276 + ], + [ + 2104284, + 5869285 + ], + [ + 2104291, + 5869296 + ], + [ + 2104297, + 5869307 + ], + [ + 2104305, + 5869317 + ], + [ + 2104311, + 5869327 + ], + [ + 2104319, + 5869338 + ], + [ + 2104325, + 5869349 + ], + [ + 2104333, + 5869360 + ], + [ + 2104339, + 5869370 + ], + [ + 2104346, + 5869380 + ], + [ + 2104353, + 5869391 + ], + [ + 2104359, + 5869402 + ], + [ + 2104366, + 5869411 + ], + [ + 2104372, + 5869422 + ], + [ + 2104380, + 5869433 + ], + [ + 2104387, + 5869444 + ], + [ + 2104394, + 5869454 + ], + [ + 2104400, + 5869464 + ], + [ + 2104408, + 5869475 + ], + [ + 2104414, + 5869485 + ], + [ + 2104422, + 5869495 + ], + [ + 2104429, + 5869505 + ], + [ + 2104436, + 5869516 + ], + [ + 2104442, + 5869527 + ], + [ + 2104450, + 5869536 + ], + [ + 2104457, + 5869547 + ], + [ + 2104463, + 5869558 + ], + [ + 2104471, + 5869568 + ], + [ + 2104477, + 5869578 + ], + [ + 2104485, + 5869589 + ], + [ + 2104492, + 5869599 + ], + [ + 2104499, + 5869609 + ], + [ + 2104506, + 5869620 + ], + [ + 2104514, + 5869630 + ], + [ + 2104520, + 5869641 + ], + [ + 2104528, + 5869651 + ], + [ + 2104535, + 5869661 + ], + [ + 2104542, + 5869671 + ], + [ + 2104549, + 5869682 + ], + [ + 2104556, + 5869691 + ], + [ + 2104564, + 5869702 + ], + [ + 2104570, + 5869713 + ], + [ + 2104579, + 5869723 + ], + [ + 2104585, + 5869732 + ], + [ + 2104592, + 5869743 + ], + [ + 2104599, + 5869754 + ], + [ + 2104607, + 5869764 + ], + [ + 2104613, + 5869774 + ], + [ + 2104622, + 5869784 + ], + [ + 2104628, + 5869795 + ], + [ + 2104635, + 5869806 + ], + [ + 2104642, + 5869815 + ], + [ + 2104649, + 5869826 + ], + [ + 2104656, + 5869837 + ], + [ + 2104664, + 5869846 + ], + [ + 2104671, + 5869856 + ], + [ + 2104677, + 5869867 + ], + [ + 2104685, + 5869878 + ], + [ + 2104691, + 5869888 + ], + [ + 2104698, + 5869899 + ], + [ + 2104705, + 5869909 + ], + [ + 2104712, + 5869920 + ], + [ + 2104719, + 5869930 + ], + [ + 2104726, + 5869940 + ], + [ + 2104732, + 5869951 + ], + [ + 2104739, + 5869962 + ], + [ + 2104746, + 5869972 + ], + [ + 2104753, + 5869982 + ], + [ + 2104760, + 5869993 + ], + [ + 2104766, + 5870004 + ], + [ + 2104774, + 5870014 + ], + [ + 2104780, + 5870024 + ], + [ + 2104787, + 5870035 + ], + [ + 2104794, + 5870046 + ], + [ + 2104801, + 5870056 + ], + [ + 2104807, + 5870066 + ], + [ + 2104814, + 5870077 + ], + [ + 2104821, + 5870088 + ], + [ + 2104829, + 5870097 + ], + [ + 2104835, + 5870108 + ], + [ + 2104842, + 5870119 + ], + [ + 2104850, + 5870129 + ], + [ + 2104856, + 5870139 + ], + [ + 2104863, + 5870150 + ], + [ + 2104871, + 5870160 + ], + [ + 2104878, + 5870171 + ], + [ + 2104884, + 5870181 + ], + [ + 2104892, + 5870192 + ], + [ + 2104898, + 5870203 + ], + [ + 2104905, + 5870214 + ], + [ + 2104912, + 5870223 + ], + [ + 2104919, + 5870234 + ], + [ + 2104925, + 5870245 + ], + [ + 2104934, + 5870254 + ], + [ + 2104940, + 5870264 + ], + [ + 2104946, + 5870275 + ], + [ + 2104955, + 5870285 + ], + [ + 2104961, + 5870296 + ], + [ + 2104968, + 5870306 + ], + [ + 2104977, + 5870316 + ], + [ + 2104984, + 5870326 + ], + [ + 2104990, + 5870336 + ], + [ + 2104998, + 5870346 + ], + [ + 2105004, + 5870357 + ], + [ + 2105012, + 5870368 + ], + [ + 2105019, + 5870377 + ], + [ + 2105026, + 5870388 + ], + [ + 2105033, + 5870399 + ], + [ + 2105040, + 5870408 + ], + [ + 2105048, + 5870418 + ], + [ + 2105054, + 5870429 + ], + [ + 2105063, + 5870439 + ], + [ + 2105069, + 5870449 + ], + [ + 2105077, + 5870459 + ], + [ + 2105084, + 5870469 + ], + [ + 2105091, + 5870480 + ], + [ + 2105098, + 5870490 + ], + [ + 2105106, + 5870499 + ], + [ + 2105113, + 5870510 + ], + [ + 2105119, + 5870521 + ], + [ + 2105127, + 5870530 + ], + [ + 2105133, + 5870541 + ], + [ + 2105140, + 5870552 + ], + [ + 2105147, + 5870562 + ], + [ + 2105155, + 5870572 + ], + [ + 2105161, + 5870583 + ], + [ + 2105169, + 5870594 + ], + [ + 2105175, + 5870605 + ], + [ + 2105183, + 5870614 + ], + [ + 2105189, + 5870625 + ], + [ + 2105196, + 5870636 + ], + [ + 2105203, + 5870647 + ], + [ + 2105211, + 5870656 + ], + [ + 2105217, + 5870666 + ], + [ + 2105223, + 5870677 + ], + [ + 2105231, + 5870688 + ], + [ + 2105237, + 5870698 + ], + [ + 2105245, + 5870709 + ], + [ + 2105251, + 5870719 + ], + [ + 2105259, + 5870730 + ], + [ + 2105265, + 5870740 + ], + [ + 2105273, + 5870750 + ], + [ + 2105280, + 5870761 + ], + [ + 2105287, + 5870772 + ], + [ + 2105295, + 5870781 + ], + [ + 2105302, + 5870792 + ], + [ + 2105308, + 5870803 + ], + [ + 2105317, + 5870813 + ], + [ + 2105323, + 5870823 + ], + [ + 2105329, + 5870833 + ], + [ + 2105337, + 5870844 + ], + [ + 2105343, + 5870855 + ], + [ + 2105351, + 5870865 + ], + [ + 2105359, + 5870874 + ], + [ + 2105366, + 5870885 + ], + [ + 2105372, + 5870895 + ], + [ + 2105380, + 5870905 + ], + [ + 2105387, + 5870916 + ], + [ + 2105394, + 5870927 + ], + [ + 2105401, + 5870936 + ], + [ + 2105409, + 5870947 + ], + [ + 2105415, + 5870958 + ], + [ + 2105422, + 5870968 + ], + [ + 2105429, + 5870977 + ], + [ + 2105436, + 5870988 + ], + [ + 2105444, + 5870998 + ], + [ + 2105451, + 5871008 + ], + [ + 2105458, + 5871018 + ], + [ + 2105466, + 5871028 + ], + [ + 2105474, + 5871038 + ], + [ + 2105480, + 5871049 + ], + [ + 2105489, + 5871058 + ], + [ + 2105495, + 5871069 + ], + [ + 2105502, + 5871079 + ], + [ + 2105510, + 5871089 + ], + [ + 2105516, + 5871100 + ], + [ + 2105524, + 5871111 + ], + [ + 2105530, + 5871121 + ], + [ + 2105537, + 5871131 + ], + [ + 2105544, + 5871142 + ], + [ + 2105551, + 5871152 + ], + [ + 2105557, + 5871163 + ], + [ + 2105565, + 5871173 + ], + [ + 2105570, + 5871184 + ], + [ + 2105578, + 5871195 + ], + [ + 2105584, + 5871206 + ], + [ + 2105592, + 5871215 + ], + [ + 2105598, + 5871226 + ], + [ + 2105605, + 5871237 + ], + [ + 2105613, + 5871247 + ], + [ + 2105619, + 5871257 + ], + [ + 2105627, + 5871268 + ], + [ + 2105634, + 5871278 + ], + [ + 2105641, + 5871289 + ], + [ + 2105647, + 5871299 + ], + [ + 2105656, + 5871309 + ], + [ + 2105662, + 5871320 + ], + [ + 2105669, + 5871331 + ], + [ + 2105676, + 5871340 + ], + [ + 2105683, + 5871351 + ], + [ + 2105690, + 5871362 + ], + [ + 2105698, + 5871371 + ], + [ + 2105705, + 5871381 + ], + [ + 2105711, + 5871392 + ], + [ + 2105719, + 5871402 + ], + [ + 2105726, + 5871412 + ], + [ + 2105733, + 5871423 + ], + [ + 2105740, + 5871433 + ], + [ + 2105747, + 5871444 + ], + [ + 2105753, + 5871455 + ], + [ + 2105761, + 5871465 + ], + [ + 2105767, + 5871475 + ], + [ + 2105774, + 5871486 + ], + [ + 2105781, + 5871496 + ], + [ + 2105788, + 5871507 + ], + [ + 2105794, + 5871518 + ], + [ + 2105802, + 5871528 + ], + [ + 2105808, + 5871539 + ], + [ + 2105815, + 5871549 + ], + [ + 2105823, + 5871559 + ], + [ + 2105829, + 5871570 + ], + [ + 2105837, + 5871580 + ], + [ + 2105843, + 5871590 + ], + [ + 2105851, + 5871601 + ], + [ + 2105857, + 5871612 + ], + [ + 2105866, + 5871620 + ], + [ + 2105872, + 5871631 + ], + [ + 2105880, + 5871642 + ], + [ + 2105888, + 5871652 + ], + [ + 2105895, + 5871661 + ], + [ + 2105902, + 5871672 + ], + [ + 2105911, + 5871681 + ], + [ + 2105918, + 5871691 + ], + [ + 2105924, + 5871702 + ], + [ + 2105933, + 5871711 + ], + [ + 2105940, + 5871722 + ], + [ + 2105947, + 5871732 + ], + [ + 2105955, + 5871741 + ], + [ + 2105963, + 5871752 + ], + [ + 2105969, + 5871763 + ], + [ + 2105977, + 5871772 + ], + [ + 2105984, + 5871782 + ], + [ + 2105991, + 5871793 + ], + [ + 2105999, + 5871802 + ], + [ + 2106006, + 5871812 + ], + [ + 2106013, + 5871823 + ], + [ + 2106021, + 5871833 + ], + [ + 2106028, + 5871843 + ], + [ + 2106034, + 5871854 + ], + [ + 2106042, + 5871865 + ], + [ + 2106049, + 5871875 + ], + [ + 2106056, + 5871885 + ], + [ + 2106063, + 5871896 + ], + [ + 2106070, + 5871907 + ], + [ + 2106076, + 5871918 + ], + [ + 2106083, + 5871928 + ], + [ + 2106090, + 5871939 + ], + [ + 2106096, + 5871950 + ], + [ + 2106104, + 5871960 + ], + [ + 2106110, + 5871970 + ], + [ + 2106118, + 5871981 + ], + [ + 2106124, + 5871992 + ], + [ + 2106132, + 5872003 + ], + [ + 2106138, + 5872013 + ], + [ + 2106146, + 5872022 + ], + [ + 2106152, + 5872033 + ], + [ + 2106159, + 5872044 + ], + [ + 2106167, + 5872052 + ], + [ + 2106173, + 5872063 + ], + [ + 2106180, + 5872074 + ], + [ + 2106188, + 5872084 + ], + [ + 2106195, + 5872094 + ], + [ + 2106201, + 5872104 + ], + [ + 2106211, + 5872114 + ], + [ + 2106217, + 5872124 + ], + [ + 2106224, + 5872135 + ], + [ + 2106232, + 5872144 + ], + [ + 2106239, + 5872155 + ], + [ + 2106245, + 5872165 + ], + [ + 2106254, + 5872174 + ], + [ + 2106261, + 5872185 + ], + [ + 2106268, + 5872196 + ], + [ + 2106276, + 5872205 + ], + [ + 2106282, + 5872216 + ], + [ + 2106289, + 5872227 + ], + [ + 2106296, + 5872237 + ], + [ + 2106304, + 5872247 + ], + [ + 2106310, + 5872258 + ], + [ + 2106318, + 5872269 + ], + [ + 2106324, + 5872280 + ], + [ + 2106331, + 5872290 + ], + [ + 2106338, + 5872300 + ], + [ + 2106346, + 5872311 + ], + [ + 2106352, + 5872322 + ], + [ + 2106359, + 5872331 + ], + [ + 2106366, + 5872342 + ], + [ + 2106372, + 5872353 + ], + [ + 2106380, + 5872362 + ], + [ + 2106386, + 5872372 + ], + [ + 2106393, + 5872383 + ], + [ + 2106402, + 5872393 + ], + [ + 2106409, + 5872403 + ], + [ + 2106415, + 5872414 + ], + [ + 2106424, + 5872423 + ], + [ + 2106430, + 5872434 + ], + [ + 2106437, + 5872444 + ], + [ + 2106445, + 5872454 + ], + [ + 2106451, + 5872465 + ], + [ + 2106458, + 5872476 + ], + [ + 2106466, + 5872485 + ], + [ + 2106473, + 5872496 + ], + [ + 2106479, + 5872507 + ], + [ + 2106488, + 5872517 + ], + [ + 2106494, + 5872527 + ], + [ + 2106501, + 5872538 + ], + [ + 2106509, + 5872547 + ], + [ + 2106517, + 5872557 + ], + [ + 2106523, + 5872568 + ], + [ + 2106531, + 5872578 + ], + [ + 2106537, + 5872589 + ], + [ + 2106543, + 5872600 + ], + [ + 2106552, + 5872609 + ], + [ + 2106558, + 5872620 + ], + [ + 2106565, + 5872631 + ], + [ + 2106573, + 5872639 + ], + [ + 2106580, + 5872650 + ], + [ + 2106586, + 5872661 + ], + [ + 2106596, + 5872671 + ], + [ + 2106602, + 5872681 + ], + [ + 2106609, + 5872692 + ], + [ + 2106617, + 5872701 + ], + [ + 2106624, + 5872712 + ], + [ + 2106630, + 5872722 + ], + [ + 2106639, + 5872732 + ], + [ + 2106646, + 5872743 + ], + [ + 2106652, + 5872753 + ], + [ + 2106661, + 5872762 + ], + [ + 2106667, + 5872773 + ], + [ + 2106674, + 5872784 + ], + [ + 2106682, + 5872793 + ], + [ + 2106689, + 5872804 + ], + [ + 2106695, + 5872815 + ], + [ + 2106705, + 5872824 + ], + [ + 2106712, + 5872834 + ], + [ + 2106719, + 5872845 + ], + [ + 2106726, + 5872855 + ], + [ + 2106732, + 5872866 + ], + [ + 2106739, + 5872876 + ], + [ + 2106747, + 5872885 + ], + [ + 2106754, + 5872896 + ], + [ + 2106760, + 5872907 + ], + [ + 2106769, + 5872916 + ], + [ + 2106775, + 5872927 + ], + [ + 2106782, + 5872938 + ], + [ + 2106791, + 5872947 + ], + [ + 2106798, + 5872958 + ], + [ + 2106804, + 5872969 + ], + [ + 2106811, + 5872979 + ], + [ + 2106818, + 5872989 + ], + [ + 2106824, + 5873000 + ], + [ + 2106832, + 5873010 + ], + [ + 2106838, + 5873021 + ], + [ + 2106845, + 5873031 + ], + [ + 2106852, + 5873041 + ], + [ + 2106859, + 5873052 + ], + [ + 2106865, + 5873063 + ], + [ + 2106874, + 5873072 + ], + [ + 2106880, + 5873083 + ], + [ + 2106886, + 5873094 + ], + [ + 2106894, + 5873104 + ], + [ + 2106901, + 5873114 + ], + [ + 2106907, + 5873125 + ], + [ + 2106914, + 5873135 + ], + [ + 2106921, + 5873146 + ], + [ + 2106927, + 5873156 + ], + [ + 2106936, + 5873166 + ], + [ + 2106942, + 5873177 + ], + [ + 2106948, + 5873188 + ], + [ + 2106957, + 5873197 + ], + [ + 2106964, + 5873208 + ], + [ + 2106969, + 5873219 + ], + [ + 2106978, + 5873229 + ], + [ + 2106984, + 5873239 + ], + [ + 2106991, + 5873250 + ], + [ + 2106999, + 5873260 + ], + [ + 2107006, + 5873271 + ], + [ + 2107012, + 5873281 + ], + [ + 2107020, + 5873291 + ], + [ + 2107026, + 5873302 + ], + [ + 2107032, + 5873313 + ], + [ + 2107041, + 5873322 + ], + [ + 2107047, + 5873333 + ], + [ + 2107054, + 5873345 + ], + [ + 2107062, + 5873353 + ], + [ + 2107069, + 5873365 + ], + [ + 2107074, + 5873376 + ], + [ + 2107084, + 5873386 + ], + [ + 2107089, + 5873397 + ], + [ + 2107096, + 5873407 + ], + [ + 2107104, + 5873416 + ], + [ + 2107111, + 5873428 + ], + [ + 2107117, + 5873438 + ], + [ + 2107125, + 5873447 + ], + [ + 2107132, + 5873458 + ], + [ + 2107138, + 5873470 + ], + [ + 2107147, + 5873478 + ], + [ + 2107153, + 5873489 + ], + [ + 2107159, + 5873500 + ], + [ + 2107168, + 5873510 + ], + [ + 2107175, + 5873520 + ], + [ + 2107181, + 5873531 + ], + [ + 2107191, + 5873540 + ], + [ + 2107196, + 5873551 + ], + [ + 2107203, + 5873561 + ], + [ + 2107213, + 5873570 + ], + [ + 2107219, + 5873581 + ], + [ + 2107225, + 5873593 + ], + [ + 2107235, + 5873601 + ], + [ + 2107241, + 5873612 + ], + [ + 2107247, + 5873623 + ], + [ + 2107257, + 5873631 + ], + [ + 2107263, + 5873642 + ], + [ + 2107270, + 5873653 + ], + [ + 2107278, + 5873663 + ], + [ + 2107285, + 5873673 + ], + [ + 2107290, + 5873684 + ], + [ + 2107299, + 5873693 + ], + [ + 2107306, + 5873705 + ], + [ + 2107311, + 5873715 + ], + [ + 2107320, + 5873724 + ], + [ + 2107326, + 5873735 + ], + [ + 2107333, + 5873747 + ], + [ + 2107342, + 5873755 + ], + [ + 2107349, + 5873766 + ], + [ + 2107355, + 5873777 + ], + [ + 2107365, + 5873785 + ], + [ + 2107370, + 5873796 + ], + [ + 2107377, + 5873808 + ], + [ + 2107385, + 5873817 + ], + [ + 2107391, + 5873827 + ], + [ + 2107398, + 5873838 + ], + [ + 2107406, + 5873848 + ], + [ + 2107412, + 5873859 + ], + [ + 2107418, + 5873869 + ], + [ + 2107427, + 5873879 + ], + [ + 2107433, + 5873890 + ], + [ + 2107440, + 5873901 + ], + [ + 2107448, + 5873910 + ], + [ + 2107455, + 5873921 + ], + [ + 2107460, + 5873932 + ], + [ + 2107469, + 5873942 + ], + [ + 2107475, + 5873952 + ], + [ + 2107482, + 5873964 + ], + [ + 2107491, + 5873973 + ], + [ + 2107496, + 5873984 + ], + [ + 2107503, + 5873994 + ], + [ + 2107511, + 5874004 + ], + [ + 2107517, + 5874015 + ], + [ + 2107523, + 5874027 + ], + [ + 2107532, + 5874035 + ], + [ + 2107538, + 5874046 + ], + [ + 2107544, + 5874058 + ], + [ + 2107553, + 5874066 + ], + [ + 2107559, + 5874078 + ], + [ + 2107565, + 5874089 + ], + [ + 2107574, + 5874098 + ], + [ + 2107580, + 5874108 + ], + [ + 2107586, + 5874120 + ], + [ + 2107595, + 5874129 + ], + [ + 2107601, + 5874140 + ], + [ + 2107607, + 5874152 + ], + [ + 2107615, + 5874160 + ], + [ + 2107622, + 5874171 + ], + [ + 2107627, + 5874183 + ], + [ + 2107637, + 5874191 + ], + [ + 2107643, + 5874202 + ], + [ + 2107649, + 5874214 + ], + [ + 2107658, + 5874223 + ], + [ + 2107664, + 5874234 + ], + [ + 2107670, + 5874245 + ], + [ + 2107679, + 5874254 + ], + [ + 2107685, + 5874266 + ], + [ + 2107691, + 5874276 + ], + [ + 2107699, + 5874286 + ], + [ + 2107704, + 5874297 + ], + [ + 2107711, + 5874308 + ], + [ + 2107719, + 5874317 + ], + [ + 2107725, + 5874328 + ], + [ + 2107731, + 5874339 + ], + [ + 2107740, + 5874349 + ], + [ + 2107746, + 5874359 + ], + [ + 2107752, + 5874371 + ], + [ + 2107761, + 5874380 + ], + [ + 2107767, + 5874391 + ], + [ + 2107773, + 5874402 + ], + [ + 2107781, + 5874412 + ], + [ + 2107787, + 5874423 + ], + [ + 2107793, + 5874434 + ], + [ + 2107801, + 5874443 + ], + [ + 2107806, + 5874455 + ], + [ + 2107812, + 5874466 + ], + [ + 2107821, + 5874475 + ], + [ + 2107827, + 5874487 + ], + [ + 2107833, + 5874497 + ], + [ + 2107843, + 5874507 + ], + [ + 2107848, + 5874518 + ], + [ + 2107854, + 5874530 + ], + [ + 2107864, + 5874537 + ], + [ + 2107870, + 5874549 + ], + [ + 2107875, + 5874560 + ], + [ + 2107885, + 5874568 + ], + [ + 2107891, + 5874580 + ], + [ + 2107897, + 5874591 + ], + [ + 2107906, + 5874600 + ], + [ + 2107911, + 5874610 + ], + [ + 2107918, + 5874622 + ], + [ + 2107927, + 5874630 + ], + [ + 2107933, + 5874642 + ], + [ + 2107939, + 5874652 + ], + [ + 2107948, + 5874662 + ], + [ + 2107954, + 5874674 + ], + [ + 2107960, + 5874685 + ], + [ + 2107969, + 5874693 + ], + [ + 2107975, + 5874705 + ], + [ + 2107981, + 5874716 + ], + [ + 2107991, + 5874725 + ], + [ + 2107996, + 5874736 + ], + [ + 2108002, + 5874747 + ], + [ + 2108012, + 5874756 + ], + [ + 2108017, + 5874767 + ], + [ + 2108024, + 5874777 + ], + [ + 2108033, + 5874786 + ], + [ + 2108039, + 5874798 + ], + [ + 2108045, + 5874809 + ], + [ + 2108055, + 5874817 + ], + [ + 2108060, + 5874829 + ], + [ + 2108066, + 5874840 + ], + [ + 2108076, + 5874848 + ], + [ + 2108082, + 5874859 + ], + [ + 2108087, + 5874871 + ], + [ + 2108097, + 5874879 + ], + [ + 2108103, + 5874890 + ], + [ + 2108108, + 5874901 + ], + [ + 2108119, + 5874910 + ], + [ + 2108124, + 5874921 + ], + [ + 2108131, + 5874932 + ], + [ + 2108140, + 5874940 + ], + [ + 2108146, + 5874952 + ], + [ + 2108152, + 5874963 + ], + [ + 2108162, + 5874971 + ], + [ + 2108167, + 5874983 + ], + [ + 2108173, + 5874994 + ], + [ + 2108183, + 5875002 + ], + [ + 2108188, + 5875013 + ], + [ + 2108194, + 5875025 + ], + [ + 2108204, + 5875034 + ], + [ + 2108210, + 5875044 + ], + [ + 2108216, + 5875056 + ], + [ + 2108227, + 5875064 + ], + [ + 2108232, + 5875075 + ], + [ + 2108238, + 5875086 + ], + [ + 2108247, + 5875095 + ], + [ + 2108254, + 5875106 + ], + [ + 2108259, + 5875118 + ], + [ + 2108268, + 5875125 + ], + [ + 2108275, + 5875137 + ], + [ + 2108280, + 5875148 + ], + [ + 2108290, + 5875158 + ], + [ + 2108295, + 5875168 + ], + [ + 2108301, + 5875179 + ], + [ + 2108310, + 5875189 + ], + [ + 2108317, + 5875200 + ], + [ + 2108322, + 5875210 + ], + [ + 2108331, + 5875220 + ], + [ + 2108337, + 5875232 + ], + [ + 2108343, + 5875243 + ], + [ + 2108352, + 5875251 + ], + [ + 2108358, + 5875263 + ], + [ + 2108363, + 5875274 + ], + [ + 2108373, + 5875284 + ], + [ + 2108378, + 5875294 + ], + [ + 2108384, + 5875306 + ], + [ + 2108393, + 5875315 + ], + [ + 2108398, + 5875327 + ], + [ + 2108404, + 5875337 + ], + [ + 2108413, + 5875347 + ], + [ + 2108419, + 5875358 + ], + [ + 2108424, + 5875370 + ], + [ + 2108434, + 5875378 + ], + [ + 2108439, + 5875390 + ], + [ + 2108445, + 5875401 + ], + [ + 2108454, + 5875410 + ], + [ + 2108460, + 5875421 + ], + [ + 2108465, + 5875432 + ], + [ + 2108475, + 5875442 + ], + [ + 2108481, + 5875453 + ], + [ + 2108487, + 5875464 + ], + [ + 2108497, + 5875472 + ], + [ + 2108502, + 5875483 + ], + [ + 2108508, + 5875495 + ], + [ + 2108518, + 5875502 + ], + [ + 2108524, + 5875514 + ], + [ + 2108529, + 5875525 + ], + [ + 2108541, + 5875533 + ], + [ + 2108546, + 5875544 + ], + [ + 2108552, + 5875556 + ], + [ + 2108562, + 5875565 + ], + [ + 2108568, + 5875575 + ], + [ + 2108573, + 5875587 + ], + [ + 2108582, + 5875596 + ], + [ + 2108588, + 5875608 + ], + [ + 2108593, + 5875619 + ], + [ + 2108602, + 5875628 + ], + [ + 2108608, + 5875640 + ], + [ + 2108614, + 5875651 + ], + [ + 2108622, + 5875660 + ], + [ + 2108628, + 5875671 + ], + [ + 2108634, + 5875682 + ], + [ + 2108644, + 5875691 + ], + [ + 2108649, + 5875701 + ], + [ + 2108656, + 5875713 + ], + [ + 2108664, + 5875721 + ], + [ + 2108671, + 5875733 + ], + [ + 2108676, + 5875743 + ], + [ + 2108685, + 5875752 + ], + [ + 2108692, + 5875763 + ], + [ + 2108697, + 5875775 + ], + [ + 2108708, + 5875782 + ], + [ + 2108713, + 5875794 + ], + [ + 2108719, + 5875805 + ], + [ + 2108728, + 5875814 + ], + [ + 2108735, + 5875825 + ], + [ + 2108740, + 5875836 + ], + [ + 2108750, + 5875845 + ], + [ + 2108755, + 5875857 + ], + [ + 2108761, + 5875867 + ], + [ + 2108770, + 5875877 + ], + [ + 2108777, + 5875888 + ], + [ + 2108782, + 5875900 + ], + [ + 2108791, + 5875908 + ], + [ + 2108797, + 5875919 + ], + [ + 2108802, + 5875931 + ], + [ + 2108812, + 5875940 + ], + [ + 2108817, + 5875950 + ], + [ + 2108824, + 5875962 + ], + [ + 2108833, + 5875971 + ], + [ + 2108839, + 5875982 + ], + [ + 2108844, + 5875993 + ], + [ + 2108855, + 5876002 + ], + [ + 2108860, + 5876013 + ], + [ + 2108866, + 5876025 + ], + [ + 2108875, + 5876032 + ], + [ + 2108880, + 5876044 + ], + [ + 2108886, + 5876056 + ], + [ + 2108897, + 5876063 + ], + [ + 2108903, + 5876075 + ], + [ + 2108908, + 5876086 + ], + [ + 2108918, + 5876095 + ], + [ + 2108924, + 5876105 + ], + [ + 2108930, + 5876117 + ], + [ + 2108939, + 5876126 + ], + [ + 2108945, + 5876137 + ], + [ + 2108950, + 5876148 + ], + [ + 2108960, + 5876157 + ], + [ + 2108965, + 5876168 + ], + [ + 2108971, + 5876180 + ], + [ + 2108979, + 5876188 + ], + [ + 2108985, + 5876200 + ], + [ + 2108991, + 5876211 + ], + [ + 2109000, + 5876221 + ], + [ + 2109006, + 5876231 + ], + [ + 2109011, + 5876243 + ], + [ + 2109020, + 5876252 + ], + [ + 2109025, + 5876264 + ], + [ + 2109032, + 5876275 + ], + [ + 2109042, + 5876283 + ], + [ + 2109048, + 5876295 + ], + [ + 2109053, + 5876306 + ], + [ + 2109064, + 5876314 + ], + [ + 2109069, + 5876325 + ], + [ + 2109075, + 5876337 + ], + [ + 2109085, + 5876345 + ], + [ + 2109090, + 5876356 + ], + [ + 2109096, + 5876367 + ], + [ + 2109106, + 5876376 + ], + [ + 2109112, + 5876388 + ], + [ + 2109117, + 5876398 + ], + [ + 2109127, + 5876407 + ], + [ + 2109133, + 5876419 + ], + [ + 2109139, + 5876430 + ], + [ + 2109148, + 5876438 + ], + [ + 2109154, + 5876449 + ], + [ + 2109160, + 5876461 + ], + [ + 2109169, + 5876469 + ], + [ + 2109175, + 5876480 + ], + [ + 2109180, + 5876492 + ], + [ + 2109191, + 5876501 + ], + [ + 2109196, + 5876511 + ], + [ + 2109202, + 5876523 + ], + [ + 2109213, + 5876531 + ], + [ + 2109219, + 5876542 + ], + [ + 2109224, + 5876553 + ], + [ + 2109235, + 5876561 + ], + [ + 2109240, + 5876573 + ], + [ + 2109246, + 5876584 + ], + [ + 2109256, + 5876592 + ], + [ + 2109261, + 5876603 + ], + [ + 2109267, + 5876615 + ], + [ + 2109277, + 5876622 + ], + [ + 2109283, + 5876634 + ], + [ + 2109289, + 5876645 + ], + [ + 2109299, + 5876654 + ], + [ + 2109304, + 5876665 + ], + [ + 2109311, + 5876676 + ], + [ + 2109320, + 5876685 + ], + [ + 2109326, + 5876696 + ], + [ + 2109331, + 5876708 + ], + [ + 2109341, + 5876716 + ], + [ + 2109347, + 5876727 + ], + [ + 2109352, + 5876738 + ], + [ + 2109361, + 5876747 + ], + [ + 2109367, + 5876758 + ], + [ + 2109373, + 5876770 + ], + [ + 2109383, + 5876779 + ], + [ + 2109389, + 5876789 + ], + [ + 2109394, + 5876801 + ], + [ + 2109403, + 5876810 + ], + [ + 2109409, + 5876822 + ], + [ + 2109415, + 5876833 + ], + [ + 2109424, + 5876841 + ], + [ + 2109430, + 5876853 + ], + [ + 2109435, + 5876864 + ], + [ + 2109445, + 5876873 + ], + [ + 2109450, + 5876884 + ], + [ + 2109456, + 5876896 + ], + [ + 2109465, + 5876905 + ], + [ + 2109471, + 5876915 + ], + [ + 2109477, + 5876927 + ], + [ + 2109486, + 5876936 + ], + [ + 2109492, + 5876947 + ], + [ + 2109497, + 5876958 + ], + [ + 2109508, + 5876966 + ], + [ + 2109513, + 5876978 + ], + [ + 2109519, + 5876990 + ], + [ + 2109528, + 5876998 + ], + [ + 2109535, + 5877009 + ], + [ + 2109540, + 5877021 + ], + [ + 2109551, + 5877030 + ], + [ + 2109556, + 5877040 + ], + [ + 2109562, + 5877052 + ], + [ + 2109571, + 5877061 + ], + [ + 2109576, + 5877072 + ], + [ + 2109582, + 5877083 + ], + [ + 2109592, + 5877092 + ], + [ + 2109598, + 5877103 + ], + [ + 2109603, + 5877115 + ], + [ + 2109614, + 5877122 + ], + [ + 2109619, + 5877133 + ], + [ + 2109625, + 5877145 + ], + [ + 2109634, + 5877153 + ], + [ + 2109640, + 5877164 + ], + [ + 2109645, + 5877176 + ], + [ + 2109655, + 5877185 + ], + [ + 2109662, + 5877195 + ], + [ + 2109667, + 5877207 + ], + [ + 2109677, + 5877216 + ], + [ + 2109682, + 5877227 + ], + [ + 2109688, + 5877239 + ], + [ + 2109697, + 5877247 + ], + [ + 2109703, + 5877258 + ], + [ + 2109708, + 5877270 + ], + [ + 2109718, + 5877278 + ], + [ + 2109723, + 5877290 + ], + [ + 2109730, + 5877301 + ], + [ + 2109738, + 5877311 + ], + [ + 2109745, + 5877321 + ], + [ + 2109750, + 5877333 + ], + [ + 2109758, + 5877341 + ], + [ + 2109765, + 5877353 + ], + [ + 2109770, + 5877364 + ], + [ + 2109780, + 5877373 + ], + [ + 2109785, + 5877384 + ], + [ + 2109791, + 5877396 + ], + [ + 2109801, + 5877404 + ], + [ + 2109807, + 5877415 + ], + [ + 2109812, + 5877427 + ], + [ + 2109823, + 5877436 + ], + [ + 2109828, + 5877446 + ], + [ + 2109834, + 5877458 + ], + [ + 2109845, + 5877466 + ], + [ + 2109851, + 5877478 + ], + [ + 2109856, + 5877488 + ], + [ + 2109865, + 5877497 + ], + [ + 2109871, + 5877509 + ], + [ + 2109876, + 5877520 + ], + [ + 2109887, + 5877527 + ], + [ + 2109892, + 5877539 + ], + [ + 2109899, + 5877550 + ], + [ + 2109908, + 5877558 + ], + [ + 2109914, + 5877570 + ], + [ + 2109919, + 5877581 + ], + [ + 2109931, + 5877589 + ], + [ + 2109936, + 5877600 + ], + [ + 2109942, + 5877611 + ], + [ + 2109951, + 5877620 + ], + [ + 2109957, + 5877632 + ], + [ + 2109963, + 5877642 + ], + [ + 2109972, + 5877651 + ], + [ + 2109979, + 5877662 + ], + [ + 2109984, + 5877673 + ], + [ + 2109995, + 5877681 + ], + [ + 2110000, + 5877692 + ], + [ + 2110006, + 5877704 + ], + [ + 2110015, + 5877713 + ], + [ + 2110021, + 5877724 + ], + [ + 2110026, + 5877735 + ], + [ + 2110035, + 5877744 + ], + [ + 2110041, + 5877756 + ], + [ + 2110046, + 5877766 + ], + [ + 2110056, + 5877776 + ], + [ + 2110061, + 5877787 + ], + [ + 2110068, + 5877799 + ], + [ + 2110077, + 5877807 + ], + [ + 2110083, + 5877818 + ], + [ + 2110088, + 5877830 + ], + [ + 2110098, + 5877839 + ], + [ + 2110103, + 5877850 + ], + [ + 2110110, + 5877861 + ], + [ + 2110119, + 5877870 + ], + [ + 2110125, + 5877882 + ], + [ + 2110130, + 5877892 + ], + [ + 2110140, + 5877901 + ], + [ + 2110146, + 5877913 + ], + [ + 2110151, + 5877924 + ], + [ + 2110160, + 5877933 + ], + [ + 2110165, + 5877944 + ], + [ + 2110171, + 5877956 + ], + [ + 2110181, + 5877965 + ], + [ + 2110187, + 5877975 + ], + [ + 2110192, + 5877987 + ], + [ + 2110202, + 5877996 + ], + [ + 2110207, + 5878007 + ], + [ + 2110213, + 5878018 + ], + [ + 2110223, + 5878027 + ], + [ + 2110229, + 5878038 + ], + [ + 2110235, + 5878050 + ], + [ + 2110244, + 5878057 + ], + [ + 2110250, + 5878069 + ], + [ + 2110255, + 5878080 + ], + [ + 2110265, + 5878089 + ], + [ + 2110270, + 5878100 + ], + [ + 2110276, + 5878112 + ], + [ + 2110286, + 5878121 + ], + [ + 2110292, + 5878131 + ], + [ + 2110297, + 5878143 + ], + [ + 2110307, + 5878152 + ], + [ + 2110312, + 5878163 + ], + [ + 2110319, + 5878175 + ], + [ + 2110328, + 5878183 + ], + [ + 2110334, + 5878194 + ], + [ + 2110339, + 5878205 + ], + [ + 2110349, + 5878213 + ], + [ + 2110355, + 5878225 + ], + [ + 2110360, + 5878236 + ], + [ + 2110371, + 5878245 + ], + [ + 2110377, + 5878255 + ], + [ + 2110383, + 5878267 + ], + [ + 2110392, + 5878276 + ], + [ + 2110399, + 5878287 + ], + [ + 2110404, + 5878298 + ], + [ + 2110415, + 5878306 + ], + [ + 2110420, + 5878318 + ], + [ + 2110426, + 5878329 + ], + [ + 2110436, + 5878337 + ], + [ + 2110441, + 5878348 + ], + [ + 2110447, + 5878360 + ], + [ + 2110457, + 5878367 + ], + [ + 2110464, + 5878379 + ], + [ + 2110469, + 5878390 + ], + [ + 2110479, + 5878398 + ], + [ + 2110484, + 5878409 + ], + [ + 2110491, + 5878420 + ], + [ + 2110500, + 5878429 + ], + [ + 2110507, + 5878441 + ], + [ + 2110512, + 5878451 + ], + [ + 2110520, + 5878461 + ], + [ + 2110526, + 5878472 + ], + [ + 2110532, + 5878484 + ], + [ + 2110541, + 5878492 + ], + [ + 2110546, + 5878503 + ], + [ + 2110553, + 5878515 + ], + [ + 2110561, + 5878525 + ], + [ + 2110567, + 5878535 + ], + [ + 2110573, + 5878547 + ], + [ + 2110581, + 5878557 + ], + [ + 2110587, + 5878568 + ], + [ + 2110593, + 5878580 + ], + [ + 2110602, + 5878587 + ], + [ + 2110608, + 5878599 + ], + [ + 2110614, + 5878610 + ], + [ + 2110624, + 5878619 + ], + [ + 2110629, + 5878630 + ], + [ + 2110635, + 5878642 + ], + [ + 2110645, + 5878650 + ], + [ + 2110650, + 5878661 + ], + [ + 2110656, + 5878672 + ], + [ + 2110665, + 5878681 + ], + [ + 2110671, + 5878693 + ], + [ + 2110676, + 5878703 + ], + [ + 2110685, + 5878713 + ], + [ + 2110690, + 5878724 + ], + [ + 2110697, + 5878736 + ], + [ + 2110706, + 5878744 + ], + [ + 2110712, + 5878755 + ], + [ + 2110717, + 5878767 + ], + [ + 2110727, + 5878776 + ], + [ + 2110732, + 5878787 + ], + [ + 2110738, + 5878798 + ], + [ + 2110748, + 5878807 + ], + [ + 2110753, + 5878819 + ], + [ + 2110759, + 5878829 + ], + [ + 2110768, + 5878838 + ], + [ + 2110774, + 5878850 + ], + [ + 2110779, + 5878861 + ], + [ + 2110789, + 5878870 + ], + [ + 2110794, + 5878881 + ], + [ + 2110800, + 5878893 + ], + [ + 2110809, + 5878902 + ], + [ + 2110815, + 5878913 + ], + [ + 2110821, + 5878924 + ], + [ + 2110831, + 5878933 + ], + [ + 2110836, + 5878944 + ], + [ + 2110842, + 5878955 + ], + [ + 2110851, + 5878964 + ], + [ + 2110856, + 5878975 + ], + [ + 2110862, + 5878987 + ], + [ + 2110871, + 5878995 + ], + [ + 2110877, + 5879006 + ], + [ + 2110883, + 5879017 + ], + [ + 2110894, + 5879026 + ], + [ + 2110899, + 5879037 + ], + [ + 2110905, + 5879048 + ], + [ + 2110915, + 5879057 + ], + [ + 2110921, + 5879069 + ], + [ + 2110926, + 5879079 + ], + [ + 2110935, + 5879088 + ], + [ + 2110942, + 5879099 + ], + [ + 2110947, + 5879111 + ], + [ + 2110956, + 5879119 + ], + [ + 2110961, + 5879130 + ], + [ + 2110968, + 5879142 + ], + [ + 2110977, + 5879151 + ], + [ + 2110983, + 5879161 + ], + [ + 2110989, + 5879173 + ], + [ + 2110999, + 5879182 + ], + [ + 2111004, + 5879193 + ], + [ + 2111010, + 5879203 + ], + [ + 2111020, + 5879212 + ], + [ + 2111026, + 5879224 + ], + [ + 2111032, + 5879235 + ], + [ + 2111041, + 5879243 + ], + [ + 2111047, + 5879255 + ], + [ + 2111052, + 5879266 + ], + [ + 2111062, + 5879274 + ], + [ + 2111067, + 5879286 + ], + [ + 2111074, + 5879297 + ], + [ + 2111082, + 5879307 + ], + [ + 2111088, + 5879317 + ], + [ + 2111094, + 5879329 + ], + [ + 2111104, + 5879338 + ], + [ + 2111110, + 5879349 + ], + [ + 2111116, + 5879359 + ], + [ + 2111125, + 5879368 + ], + [ + 2111131, + 5879380 + ], + [ + 2111137, + 5879391 + ], + [ + 2111146, + 5879399 + ], + [ + 2111152, + 5879410 + ], + [ + 2111158, + 5879422 + ], + [ + 2111168, + 5879431 + ], + [ + 2111173, + 5879441 + ], + [ + 2111180, + 5879452 + ], + [ + 2111189, + 5879461 + ], + [ + 2111196, + 5879473 + ], + [ + 2111201, + 5879483 + ], + [ + 2111212, + 5879492 + ], + [ + 2111218, + 5879503 + ], + [ + 2111223, + 5879514 + ], + [ + 2111233, + 5879522 + ], + [ + 2111238, + 5879534 + ], + [ + 2111245, + 5879545 + ], + [ + 2111254, + 5879553 + ], + [ + 2111260, + 5879564 + ], + [ + 2111266, + 5879576 + ], + [ + 2111275, + 5879585 + ], + [ + 2111280, + 5879595 + ], + [ + 2111287, + 5879607 + ], + [ + 2111296, + 5879616 + ], + [ + 2111303, + 5879627 + ], + [ + 2111308, + 5879637 + ], + [ + 2111316, + 5879647 + ], + [ + 2111323, + 5879658 + ], + [ + 2111329, + 5879670 + ], + [ + 2111338, + 5879678 + ], + [ + 2111344, + 5879689 + ], + [ + 2111350, + 5879700 + ], + [ + 2111359, + 5879710 + ], + [ + 2111365, + 5879720 + ], + [ + 2111371, + 5879732 + ], + [ + 2111381, + 5879740 + ], + [ + 2111386, + 5879752 + ], + [ + 2111393, + 5879762 + ], + [ + 2111401, + 5879771 + ], + [ + 2111408, + 5879783 + ], + [ + 2111413, + 5879794 + ], + [ + 2111423, + 5879802 + ], + [ + 2111429, + 5879814 + ], + [ + 2111434, + 5879825 + ], + [ + 2111444, + 5879833 + ], + [ + 2111449, + 5879845 + ], + [ + 2111455, + 5879856 + ], + [ + 2111464, + 5879865 + ], + [ + 2111470, + 5879877 + ], + [ + 2111476, + 5879887 + ], + [ + 2111484, + 5879897 + ], + [ + 2111490, + 5879908 + ], + [ + 2111497, + 5879920 + ], + [ + 2111504, + 5879928 + ], + [ + 2111511, + 5879940 + ], + [ + 2111516, + 5879951 + ], + [ + 2111525, + 5879960 + ], + [ + 2111531, + 5879971 + ], + [ + 2111537, + 5879982 + ], + [ + 2111547, + 5879991 + ], + [ + 2111553, + 5880001 + ], + [ + 2111559, + 5880013 + ], + [ + 2111568, + 5880022 + ], + [ + 2111575, + 5880033 + ], + [ + 2111580, + 5880045 + ], + [ + 2111590, + 5880053 + ], + [ + 2111595, + 5880065 + ], + [ + 2111601, + 5880076 + ], + [ + 2111610, + 5880084 + ], + [ + 2111615, + 5880096 + ], + [ + 2111621, + 5880107 + ], + [ + 2111630, + 5880117 + ], + [ + 2111636, + 5880127 + ], + [ + 2111642, + 5880138 + ], + [ + 2111652, + 5880148 + ], + [ + 2111657, + 5880159 + ], + [ + 2111663, + 5880170 + ], + [ + 2111673, + 5880179 + ], + [ + 2111679, + 5880190 + ], + [ + 2111684, + 5880201 + ], + [ + 2111695, + 5880209 + ], + [ + 2111700, + 5880220 + ], + [ + 2111707, + 5880232 + ], + [ + 2111716, + 5880241 + ], + [ + 2111721, + 5880251 + ], + [ + 2111728, + 5880262 + ], + [ + 2111737, + 5880271 + ], + [ + 2111744, + 5880283 + ], + [ + 2111749, + 5880293 + ], + [ + 2111759, + 5880302 + ], + [ + 2111764, + 5880313 + ], + [ + 2111771, + 5880325 + ], + [ + 2111780, + 5880333 + ], + [ + 2111787, + 5880344 + ], + [ + 2111792, + 5880355 + ], + [ + 2111801, + 5880363 + ], + [ + 2111808, + 5880374 + ], + [ + 2111814, + 5880386 + ], + [ + 2111823, + 5880395 + ], + [ + 2111829, + 5880405 + ], + [ + 2111835, + 5880416 + ], + [ + 2111843, + 5880426 + ], + [ + 2111850, + 5880437 + ], + [ + 2111855, + 5880447 + ], + [ + 2111865, + 5880457 + ], + [ + 2111871, + 5880468 + ], + [ + 2111877, + 5880479 + ], + [ + 2111886, + 5880488 + ], + [ + 2111891, + 5880499 + ], + [ + 2111898, + 5880510 + ], + [ + 2111907, + 5880520 + ], + [ + 2111913, + 5880530 + ], + [ + 2111919, + 5880541 + ], + [ + 2111928, + 5880551 + ], + [ + 2111934, + 5880562 + ], + [ + 2111940, + 5880572 + ], + [ + 2111949, + 5880581 + ], + [ + 2111956, + 5880593 + ], + [ + 2111961, + 5880604 + ], + [ + 2111971, + 5880612 + ], + [ + 2111977, + 5880623 + ], + [ + 2111983, + 5880635 + ], + [ + 2111992, + 5880643 + ], + [ + 2111997, + 5880654 + ], + [ + 2112004, + 5880666 + ], + [ + 2112012, + 5880675 + ], + [ + 2112019, + 5880686 + ], + [ + 2112025, + 5880697 + ], + [ + 2112034, + 5880706 + ], + [ + 2112039, + 5880717 + ], + [ + 2112046, + 5880729 + ], + [ + 2112055, + 5880737 + ], + [ + 2112061, + 5880748 + ], + [ + 2112067, + 5880759 + ], + [ + 2112076, + 5880768 + ], + [ + 2112081, + 5880780 + ], + [ + 2112088, + 5880791 + ], + [ + 2112096, + 5880800 + ], + [ + 2112102, + 5880810 + ], + [ + 2112108, + 5880822 + ], + [ + 2112117, + 5880831 + ], + [ + 2112123, + 5880842 + ], + [ + 2112128, + 5880854 + ], + [ + 2112139, + 5880862 + ], + [ + 2112144, + 5880873 + ], + [ + 2112151, + 5880885 + ], + [ + 2112159, + 5880893 + ], + [ + 2112166, + 5880904 + ], + [ + 2112171, + 5880916 + ], + [ + 2112181, + 5880925 + ], + [ + 2112186, + 5880935 + ], + [ + 2112191, + 5880947 + ], + [ + 2112202, + 5880956 + ], + [ + 2112207, + 5880967 + ], + [ + 2112214, + 5880978 + ], + [ + 2112222, + 5880987 + ], + [ + 2112229, + 5880998 + ], + [ + 2112234, + 5881009 + ], + [ + 2112245, + 5881017 + ], + [ + 2112250, + 5881028 + ], + [ + 2112257, + 5881040 + ], + [ + 2112266, + 5881048 + ], + [ + 2112272, + 5881059 + ], + [ + 2112278, + 5881070 + ], + [ + 2112286, + 5881080 + ], + [ + 2112293, + 5881091 + ], + [ + 2112299, + 5881101 + ], + [ + 2112309, + 5881111 + ], + [ + 2112314, + 5881122 + ], + [ + 2112321, + 5881132 + ], + [ + 2112329, + 5881141 + ], + [ + 2112336, + 5881153 + ], + [ + 2112342, + 5881164 + ], + [ + 2112351, + 5881172 + ], + [ + 2112356, + 5881183 + ], + [ + 2112363, + 5881195 + ], + [ + 2112371, + 5881204 + ], + [ + 2112377, + 5881214 + ], + [ + 2112383, + 5881226 + ], + [ + 2112391, + 5881235 + ], + [ + 2112398, + 5881247 + ], + [ + 2112403, + 5881258 + ], + [ + 2112413, + 5881266 + ], + [ + 2112418, + 5881277 + ], + [ + 2112425, + 5881289 + ], + [ + 2112434, + 5881298 + ], + [ + 2112440, + 5881309 + ], + [ + 2112446, + 5881320 + ], + [ + 2112455, + 5881330 + ], + [ + 2112461, + 5881340 + ], + [ + 2112467, + 5881352 + ], + [ + 2112476, + 5881361 + ], + [ + 2112481, + 5881372 + ], + [ + 2112487, + 5881383 + ], + [ + 2112495, + 5881392 + ], + [ + 2112502, + 5881404 + ], + [ + 2112507, + 5881415 + ], + [ + 2112517, + 5881423 + ], + [ + 2112523, + 5881434 + ], + [ + 2112529, + 5881446 + ], + [ + 2112537, + 5881455 + ], + [ + 2112544, + 5881465 + ], + [ + 2112549, + 5881477 + ], + [ + 2112558, + 5881486 + ], + [ + 2112564, + 5881497 + ], + [ + 2112570, + 5881507 + ], + [ + 2112579, + 5881516 + ], + [ + 2112585, + 5881528 + ], + [ + 2112591, + 5881539 + ], + [ + 2112601, + 5881547 + ], + [ + 2112607, + 5881558 + ], + [ + 2112613, + 5881570 + ], + [ + 2112623, + 5881579 + ], + [ + 2112628, + 5881590 + ], + [ + 2112635, + 5881601 + ], + [ + 2112644, + 5881610 + ], + [ + 2112651, + 5881621 + ], + [ + 2112656, + 5881632 + ], + [ + 2112666, + 5881642 + ], + [ + 2112671, + 5881653 + ], + [ + 2112677, + 5881664 + ], + [ + 2112687, + 5881672 + ], + [ + 2112693, + 5881683 + ], + [ + 2112699, + 5881694 + ], + [ + 2112707, + 5881703 + ], + [ + 2112714, + 5881714 + ], + [ + 2112719, + 5881725 + ], + [ + 2112729, + 5881735 + ], + [ + 2112735, + 5881745 + ], + [ + 2112741, + 5881756 + ], + [ + 2112749, + 5881765 + ], + [ + 2112756, + 5881777 + ], + [ + 2112762, + 5881787 + ], + [ + 2112771, + 5881796 + ], + [ + 2112777, + 5881807 + ], + [ + 2112783, + 5881818 + ], + [ + 2112793, + 5881827 + ], + [ + 2112798, + 5881838 + ], + [ + 2112805, + 5881849 + ], + [ + 2112814, + 5881859 + ], + [ + 2112820, + 5881869 + ], + [ + 2112826, + 5881880 + ], + [ + 2112835, + 5881889 + ], + [ + 2112841, + 5881901 + ], + [ + 2112847, + 5881911 + ], + [ + 2112856, + 5881920 + ], + [ + 2112861, + 5881932 + ], + [ + 2112868, + 5881943 + ], + [ + 2112877, + 5881951 + ], + [ + 2112883, + 5881962 + ], + [ + 2112889, + 5881974 + ], + [ + 2112899, + 5881982 + ], + [ + 2112904, + 5881993 + ], + [ + 2112911, + 5882004 + ], + [ + 2112919, + 5882014 + ], + [ + 2112925, + 5882024 + ], + [ + 2112931, + 5882035 + ], + [ + 2112939, + 5882045 + ], + [ + 2112945, + 5882056 + ], + [ + 2112952, + 5882068 + ], + [ + 2112960, + 5882076 + ], + [ + 2112966, + 5882087 + ], + [ + 2112973, + 5882099 + ], + [ + 2112981, + 5882107 + ], + [ + 2112987, + 5882119 + ], + [ + 2112993, + 5882130 + ], + [ + 2113004, + 5882138 + ], + [ + 2113010, + 5882148 + ], + [ + 2113016, + 5882160 + ], + [ + 2113025, + 5882169 + ], + [ + 2113032, + 5882180 + ], + [ + 2113037, + 5882191 + ], + [ + 2113046, + 5882200 + ], + [ + 2113052, + 5882211 + ], + [ + 2113058, + 5882223 + ], + [ + 2113067, + 5882231 + ], + [ + 2113073, + 5882243 + ], + [ + 2113079, + 5882254 + ], + [ + 2113089, + 5882262 + ], + [ + 2113095, + 5882273 + ], + [ + 2113101, + 5882285 + ], + [ + 2113111, + 5882294 + ], + [ + 2113117, + 5882304 + ], + [ + 2113123, + 5882315 + ], + [ + 2113131, + 5882325 + ], + [ + 2113138, + 5882336 + ], + [ + 2113143, + 5882347 + ], + [ + 2113152, + 5882356 + ], + [ + 2113158, + 5882367 + ], + [ + 2113164, + 5882378 + ], + [ + 2113174, + 5882386 + ], + [ + 2113179, + 5882398 + ], + [ + 2113186, + 5882409 + ], + [ + 2113195, + 5882418 + ], + [ + 2113202, + 5882428 + ], + [ + 2113208, + 5882439 + ], + [ + 2113217, + 5882449 + ], + [ + 2113222, + 5882460 + ], + [ + 2113229, + 5882470 + ], + [ + 2113238, + 5882479 + ], + [ + 2113243, + 5882490 + ], + [ + 2113250, + 5882502 + ], + [ + 2113257, + 5882510 + ], + [ + 2113264, + 5882522 + ], + [ + 2113270, + 5882533 + ], + [ + 2113279, + 5882543 + ], + [ + 2113284, + 5882553 + ], + [ + 2113291, + 5882564 + ], + [ + 2113299, + 5882575 + ], + [ + 2113305, + 5882586 + ], + [ + 2113311, + 5882596 + ], + [ + 2113319, + 5882606 + ], + [ + 2113325, + 5882617 + ], + [ + 2113331, + 5882629 + ], + [ + 2113339, + 5882637 + ], + [ + 2113346, + 5882649 + ], + [ + 2113351, + 5882660 + ], + [ + 2113361, + 5882669 + ], + [ + 2113367, + 5882679 + ], + [ + 2113373, + 5882691 + ], + [ + 2113382, + 5882700 + ], + [ + 2113387, + 5882711 + ], + [ + 2113394, + 5882722 + ], + [ + 2113402, + 5882731 + ], + [ + 2113409, + 5882742 + ], + [ + 2113415, + 5882754 + ], + [ + 2113424, + 5882762 + ], + [ + 2113429, + 5882773 + ], + [ + 2113436, + 5882784 + ], + [ + 2113445, + 5882794 + ], + [ + 2113450, + 5882804 + ], + [ + 2113457, + 5882815 + ], + [ + 2113465, + 5882824 + ], + [ + 2113472, + 5882836 + ], + [ + 2113478, + 5882846 + ], + [ + 2113487, + 5882855 + ], + [ + 2113493, + 5882867 + ], + [ + 2113499, + 5882878 + ], + [ + 2113508, + 5882886 + ], + [ + 2113514, + 5882897 + ], + [ + 2113520, + 5882909 + ], + [ + 2113528, + 5882918 + ], + [ + 2113535, + 5882928 + ], + [ + 2113540, + 5882940 + ], + [ + 2113550, + 5882949 + ], + [ + 2113556, + 5882960 + ], + [ + 2113562, + 5882971 + ], + [ + 2113571, + 5882980 + ], + [ + 2113577, + 5882992 + ], + [ + 2113583, + 5883003 + ], + [ + 2113593, + 5883011 + ], + [ + 2113598, + 5883023 + ], + [ + 2113605, + 5883034 + ], + [ + 2113614, + 5883042 + ], + [ + 2113621, + 5883053 + ], + [ + 2113626, + 5883065 + ], + [ + 2113636, + 5883073 + ], + [ + 2113642, + 5883084 + ], + [ + 2113648, + 5883095 + ], + [ + 2113657, + 5883104 + ], + [ + 2113663, + 5883115 + ], + [ + 2113670, + 5883126 + ], + [ + 2113678, + 5883135 + ], + [ + 2113685, + 5883146 + ], + [ + 2113691, + 5883157 + ], + [ + 2113700, + 5883166 + ], + [ + 2113706, + 5883177 + ], + [ + 2113713, + 5883188 + ], + [ + 2113721, + 5883196 + ], + [ + 2113727, + 5883207 + ], + [ + 2113733, + 5883219 + ], + [ + 2113741, + 5883228 + ], + [ + 2113748, + 5883240 + ], + [ + 2113754, + 5883250 + ], + [ + 2113763, + 5883259 + ], + [ + 2113769, + 5883270 + ], + [ + 2113775, + 5883282 + ], + [ + 2113784, + 5883290 + ], + [ + 2113790, + 5883301 + ], + [ + 2113796, + 5883313 + ], + [ + 2113807, + 5883321 + ], + [ + 2113812, + 5883332 + ], + [ + 2113819, + 5883343 + ], + [ + 2113827, + 5883353 + ], + [ + 2113832, + 5883363 + ], + [ + 2113839, + 5883374 + ], + [ + 2113847, + 5883383 + ], + [ + 2113854, + 5883395 + ], + [ + 2113860, + 5883405 + ], + [ + 2113868, + 5883415 + ], + [ + 2113874, + 5883426 + ], + [ + 2113880, + 5883437 + ], + [ + 2113890, + 5883445 + ], + [ + 2113896, + 5883457 + ], + [ + 2113902, + 5883468 + ], + [ + 2113910, + 5883477 + ], + [ + 2113917, + 5883488 + ], + [ + 2113922, + 5883499 + ], + [ + 2113931, + 5883508 + ], + [ + 2113937, + 5883519 + ], + [ + 2113943, + 5883530 + ], + [ + 2113951, + 5883540 + ], + [ + 2113958, + 5883551 + ], + [ + 2113963, + 5883562 + ], + [ + 2113973, + 5883570 + ], + [ + 2113978, + 5883582 + ], + [ + 2113985, + 5883593 + ], + [ + 2113993, + 5883603 + ], + [ + 2114000, + 5883613 + ], + [ + 2114005, + 5883624 + ], + [ + 2114015, + 5883633 + ], + [ + 2114021, + 5883645 + ], + [ + 2114027, + 5883655 + ], + [ + 2114036, + 5883665 + ], + [ + 2114041, + 5883676 + ], + [ + 2114048, + 5883688 + ], + [ + 2114056, + 5883696 + ], + [ + 2114062, + 5883708 + ], + [ + 2114068, + 5883719 + ], + [ + 2114077, + 5883729 + ], + [ + 2114083, + 5883739 + ], + [ + 2114089, + 5883750 + ], + [ + 2114099, + 5883759 + ], + [ + 2114105, + 5883771 + ], + [ + 2114111, + 5883781 + ], + [ + 2114119, + 5883790 + ], + [ + 2114126, + 5883801 + ], + [ + 2114131, + 5883813 + ], + [ + 2114140, + 5883821 + ], + [ + 2114146, + 5883833 + ], + [ + 2114152, + 5883844 + ], + [ + 2114161, + 5883852 + ], + [ + 2114168, + 5883863 + ], + [ + 2114173, + 5883875 + ], + [ + 2114183, + 5883884 + ], + [ + 2114188, + 5883894 + ], + [ + 2114195, + 5883905 + ], + [ + 2114203, + 5883914 + ], + [ + 2114209, + 5883926 + ], + [ + 2114215, + 5883937 + ], + [ + 2114223, + 5883946 + ], + [ + 2114230, + 5883957 + ], + [ + 2114235, + 5883968 + ], + [ + 2114246, + 5883977 + ], + [ + 2114251, + 5883988 + ], + [ + 2114258, + 5883999 + ], + [ + 2114266, + 5884009 + ], + [ + 2114272, + 5884019 + ], + [ + 2114278, + 5884030 + ], + [ + 2114287, + 5884040 + ], + [ + 2114292, + 5884052 + ], + [ + 2114299, + 5884062 + ], + [ + 2114307, + 5884071 + ], + [ + 2114313, + 5884083 + ], + [ + 2114319, + 5884094 + ], + [ + 2114328, + 5884102 + ], + [ + 2114334, + 5884113 + ], + [ + 2114340, + 5884125 + ], + [ + 2114349, + 5884134 + ], + [ + 2114355, + 5884145 + ], + [ + 2114361, + 5884156 + ], + [ + 2114370, + 5884165 + ], + [ + 2114376, + 5884177 + ], + [ + 2114382, + 5884187 + ], + [ + 2114391, + 5884196 + ], + [ + 2114397, + 5884208 + ], + [ + 2114403, + 5884219 + ], + [ + 2114412, + 5884228 + ], + [ + 2114417, + 5884239 + ], + [ + 2114424, + 5884250 + ], + [ + 2114432, + 5884259 + ], + [ + 2114439, + 5884270 + ], + [ + 2114444, + 5884281 + ], + [ + 2114453, + 5884291 + ], + [ + 2114459, + 5884302 + ], + [ + 2114465, + 5884312 + ], + [ + 2114474, + 5884322 + ], + [ + 2114480, + 5884333 + ], + [ + 2114486, + 5884344 + ], + [ + 2114495, + 5884353 + ], + [ + 2114501, + 5884364 + ], + [ + 2114507, + 5884375 + ], + [ + 2114516, + 5884385 + ], + [ + 2114522, + 5884395 + ], + [ + 2114528, + 5884406 + ], + [ + 2114537, + 5884416 + ], + [ + 2114543, + 5884427 + ], + [ + 2114549, + 5884437 + ], + [ + 2114558, + 5884447 + ], + [ + 2114564, + 5884458 + ], + [ + 2114571, + 5884469 + ], + [ + 2114579, + 5884478 + ], + [ + 2114585, + 5884489 + ], + [ + 2114591, + 5884500 + ], + [ + 2114600, + 5884510 + ], + [ + 2114606, + 5884520 + ], + [ + 2114612, + 5884531 + ], + [ + 2114621, + 5884541 + ], + [ + 2114626, + 5884552 + ], + [ + 2114633, + 5884562 + ], + [ + 2114642, + 5884572 + ], + [ + 2114648, + 5884583 + ], + [ + 2114654, + 5884594 + ], + [ + 2114665, + 5884602 + ], + [ + 2114670, + 5884613 + ], + [ + 2114677, + 5884625 + ], + [ + 2114685, + 5884633 + ], + [ + 2114692, + 5884644 + ], + [ + 2114698, + 5884655 + ], + [ + 2114706, + 5884664 + ], + [ + 2114713, + 5884675 + ], + [ + 2114718, + 5884686 + ], + [ + 2114728, + 5884695 + ], + [ + 2114733, + 5884706 + ], + [ + 2114740, + 5884717 + ], + [ + 2114749, + 5884726 + ], + [ + 2114756, + 5884737 + ], + [ + 2114762, + 5884748 + ], + [ + 2114772, + 5884756 + ], + [ + 2114778, + 5884768 + ], + [ + 2114784, + 5884779 + ], + [ + 2114793, + 5884787 + ], + [ + 2114799, + 5884798 + ], + [ + 2114806, + 5884809 + ], + [ + 2114814, + 5884818 + ], + [ + 2114821, + 5884828 + ], + [ + 2114827, + 5884840 + ], + [ + 2114836, + 5884849 + ], + [ + 2114842, + 5884860 + ], + [ + 2114849, + 5884870 + ], + [ + 2114857, + 5884880 + ], + [ + 2114864, + 5884891 + ], + [ + 2114870, + 5884902 + ], + [ + 2114878, + 5884911 + ], + [ + 2114884, + 5884922 + ], + [ + 2114890, + 5884933 + ], + [ + 2114899, + 5884943 + ], + [ + 2114904, + 5884953 + ], + [ + 2114911, + 5884964 + ], + [ + 2114919, + 5884974 + ], + [ + 2114925, + 5884985 + ], + [ + 2114931, + 5884995 + ], + [ + 2114940, + 5885005 + ], + [ + 2114946, + 5885016 + ], + [ + 2114953, + 5885027 + ], + [ + 2114961, + 5885036 + ], + [ + 2114968, + 5885047 + ], + [ + 2114973, + 5885058 + ], + [ + 2114981, + 5885068 + ], + [ + 2114988, + 5885078 + ], + [ + 2114994, + 5885090 + ], + [ + 2115002, + 5885099 + ], + [ + 2115008, + 5885110 + ], + [ + 2115015, + 5885121 + ], + [ + 2115023, + 5885131 + ], + [ + 2115029, + 5885142 + ], + [ + 2115035, + 5885153 + ], + [ + 2115044, + 5885162 + ], + [ + 2115049, + 5885173 + ], + [ + 2115056, + 5885184 + ], + [ + 2115064, + 5885194 + ], + [ + 2115071, + 5885204 + ], + [ + 2115076, + 5885216 + ], + [ + 2115085, + 5885225 + ], + [ + 2115091, + 5885237 + ], + [ + 2115097, + 5885247 + ], + [ + 2115106, + 5885257 + ], + [ + 2115111, + 5885268 + ], + [ + 2115118, + 5885279 + ], + [ + 2115127, + 5885287 + ], + [ + 2115134, + 5885299 + ], + [ + 2115139, + 5885310 + ], + [ + 2115148, + 5885320 + ], + [ + 2115154, + 5885330 + ], + [ + 2115160, + 5885341 + ], + [ + 2115168, + 5885351 + ], + [ + 2115175, + 5885362 + ], + [ + 2115180, + 5885372 + ], + [ + 2115189, + 5885382 + ], + [ + 2115195, + 5885393 + ], + [ + 2115201, + 5885404 + ], + [ + 2115210, + 5885413 + ], + [ + 2115216, + 5885424 + ], + [ + 2115223, + 5885435 + ], + [ + 2115231, + 5885444 + ], + [ + 2115238, + 5885455 + ], + [ + 2115243, + 5885466 + ], + [ + 2115253, + 5885476 + ], + [ + 2115258, + 5885487 + ], + [ + 2115265, + 5885497 + ], + [ + 2115273, + 5885507 + ], + [ + 2115279, + 5885518 + ], + [ + 2115285, + 5885529 + ], + [ + 2115294, + 5885538 + ], + [ + 2115300, + 5885549 + ], + [ + 2115306, + 5885560 + ], + [ + 2115317, + 5885568 + ], + [ + 2115322, + 5885579 + ], + [ + 2115329, + 5885590 + ], + [ + 2115339, + 5885599 + ], + [ + 2115345, + 5885609 + ], + [ + 2115351, + 5885621 + ], + [ + 2115360, + 5885630 + ], + [ + 2115366, + 5885641 + ], + [ + 2115372, + 5885651 + ], + [ + 2115380, + 5885661 + ], + [ + 2115386, + 5885672 + ], + [ + 2115392, + 5885684 + ], + [ + 2115399, + 5885692 + ], + [ + 2115406, + 5885704 + ], + [ + 2115412, + 5885715 + ], + [ + 2115421, + 5885724 + ], + [ + 2115427, + 5885735 + ], + [ + 2115434, + 5885746 + ], + [ + 2115442, + 5885755 + ], + [ + 2115449, + 5885766 + ], + [ + 2115455, + 5885777 + ], + [ + 2115464, + 5885786 + ], + [ + 2115470, + 5885797 + ], + [ + 2115475, + 5885808 + ], + [ + 2115485, + 5885817 + ], + [ + 2115491, + 5885828 + ], + [ + 2115497, + 5885839 + ], + [ + 2115507, + 5885848 + ], + [ + 2115514, + 5885858 + ], + [ + 2115519, + 5885869 + ], + [ + 2115528, + 5885879 + ], + [ + 2115534, + 5885890 + ], + [ + 2115541, + 5885900 + ], + [ + 2115550, + 5885910 + ], + [ + 2115556, + 5885921 + ], + [ + 2115562, + 5885932 + ], + [ + 2115570, + 5885941 + ], + [ + 2115577, + 5885952 + ], + [ + 2115583, + 5885963 + ], + [ + 2115592, + 5885972 + ], + [ + 2115597, + 5885983 + ], + [ + 2115604, + 5885994 + ], + [ + 2115612, + 5886004 + ], + [ + 2115619, + 5886014 + ], + [ + 2115625, + 5886025 + ], + [ + 2115634, + 5886035 + ], + [ + 2115640, + 5886046 + ], + [ + 2115646, + 5886057 + ], + [ + 2115654, + 5886066 + ], + [ + 2115661, + 5886077 + ], + [ + 2115667, + 5886088 + ], + [ + 2115676, + 5886096 + ], + [ + 2115683, + 5886107 + ], + [ + 2115689, + 5886119 + ], + [ + 2115698, + 5886128 + ], + [ + 2115703, + 5886138 + ], + [ + 2115710, + 5886149 + ], + [ + 2115719, + 5886159 + ], + [ + 2115725, + 5886170 + ], + [ + 2115731, + 5886180 + ], + [ + 2115740, + 5886190 + ], + [ + 2115745, + 5886201 + ], + [ + 2115752, + 5886212 + ], + [ + 2115761, + 5886221 + ], + [ + 2115767, + 5886232 + ], + [ + 2115774, + 5886243 + ], + [ + 2115782, + 5886252 + ], + [ + 2115789, + 5886263 + ], + [ + 2115795, + 5886274 + ], + [ + 2115803, + 5886284 + ], + [ + 2115809, + 5886295 + ], + [ + 2115816, + 5886305 + ], + [ + 2115824, + 5886314 + ], + [ + 2115831, + 5886325 + ], + [ + 2115836, + 5886336 + ], + [ + 2115846, + 5886345 + ], + [ + 2115852, + 5886356 + ], + [ + 2115858, + 5886367 + ], + [ + 2115867, + 5886375 + ], + [ + 2115873, + 5886387 + ], + [ + 2115880, + 5886398 + ], + [ + 2115888, + 5886407 + ], + [ + 2115895, + 5886417 + ], + [ + 2115901, + 5886428 + ], + [ + 2115910, + 5886438 + ], + [ + 2115916, + 5886449 + ], + [ + 2115923, + 5886459 + ], + [ + 2115931, + 5886469 + ], + [ + 2115938, + 5886480 + ], + [ + 2115943, + 5886491 + ], + [ + 2115951, + 5886500 + ], + [ + 2115958, + 5886511 + ], + [ + 2115963, + 5886522 + ], + [ + 2115972, + 5886532 + ], + [ + 2115978, + 5886542 + ], + [ + 2115985, + 5886553 + ], + [ + 2115993, + 5886563 + ], + [ + 2116000, + 5886574 + ], + [ + 2116005, + 5886584 + ], + [ + 2116015, + 5886594 + ], + [ + 2116020, + 5886605 + ], + [ + 2116027, + 5886616 + ], + [ + 2116035, + 5886625 + ], + [ + 2116042, + 5886637 + ], + [ + 2116048, + 5886648 + ], + [ + 2116056, + 5886657 + ], + [ + 2116062, + 5886668 + ], + [ + 2116068, + 5886679 + ], + [ + 2116077, + 5886689 + ], + [ + 2116082, + 5886700 + ], + [ + 2116089, + 5886710 + ], + [ + 2116097, + 5886720 + ], + [ + 2116104, + 5886731 + ], + [ + 2116110, + 5886742 + ], + [ + 2116118, + 5886751 + ], + [ + 2116124, + 5886762 + ], + [ + 2116131, + 5886773 + ], + [ + 2116139, + 5886783 + ], + [ + 2116146, + 5886793 + ], + [ + 2116152, + 5886804 + ], + [ + 2116159, + 5886814 + ], + [ + 2116166, + 5886825 + ], + [ + 2116172, + 5886835 + ], + [ + 2116181, + 5886844 + ], + [ + 2116187, + 5886856 + ], + [ + 2116194, + 5886867 + ], + [ + 2116203, + 5886875 + ], + [ + 2116210, + 5886886 + ], + [ + 2116216, + 5886897 + ], + [ + 2116225, + 5886906 + ], + [ + 2116231, + 5886917 + ], + [ + 2116238, + 5886928 + ], + [ + 2116246, + 5886938 + ], + [ + 2116251, + 5886948 + ], + [ + 2116258, + 5886959 + ], + [ + 2116266, + 5886968 + ], + [ + 2116273, + 5886980 + ], + [ + 2116279, + 5886990 + ], + [ + 2116288, + 5887000 + ], + [ + 2116294, + 5887011 + ], + [ + 2116300, + 5887022 + ], + [ + 2116308, + 5887031 + ], + [ + 2116315, + 5887042 + ], + [ + 2116320, + 5887053 + ], + [ + 2116329, + 5887063 + ], + [ + 2116335, + 5887073 + ], + [ + 2116341, + 5887084 + ], + [ + 2116350, + 5887094 + ], + [ + 2116355, + 5887105 + ], + [ + 2116362, + 5887115 + ], + [ + 2116370, + 5887125 + ], + [ + 2116377, + 5887136 + ], + [ + 2116383, + 5887147 + ], + [ + 2116392, + 5887156 + ], + [ + 2116398, + 5887167 + ], + [ + 2116404, + 5887178 + ], + [ + 2116412, + 5887188 + ], + [ + 2116419, + 5887198 + ], + [ + 2116425, + 5887210 + ], + [ + 2116433, + 5887220 + ], + [ + 2116439, + 5887231 + ], + [ + 2116445, + 5887241 + ], + [ + 2116454, + 5887250 + ], + [ + 2116460, + 5887262 + ], + [ + 2116467, + 5887273 + ], + [ + 2116475, + 5887281 + ], + [ + 2116482, + 5887292 + ], + [ + 2116488, + 5887303 + ], + [ + 2116496, + 5887313 + ], + [ + 2116502, + 5887323 + ], + [ + 2116509, + 5887334 + ], + [ + 2116517, + 5887344 + ], + [ + 2116524, + 5887355 + ], + [ + 2116530, + 5887365 + ], + [ + 2116537, + 5887375 + ], + [ + 2116544, + 5887386 + ], + [ + 2116550, + 5887397 + ], + [ + 2116560, + 5887406 + ], + [ + 2116566, + 5887417 + ], + [ + 2116572, + 5887428 + ], + [ + 2116581, + 5887436 + ], + [ + 2116588, + 5887448 + ], + [ + 2116594, + 5887459 + ], + [ + 2116603, + 5887468 + ], + [ + 2116609, + 5887478 + ], + [ + 2116616, + 5887489 + ], + [ + 2116624, + 5887499 + ], + [ + 2116630, + 5887510 + ], + [ + 2116637, + 5887520 + ], + [ + 2116644, + 5887530 + ], + [ + 2116651, + 5887541 + ], + [ + 2116657, + 5887552 + ], + [ + 2116666, + 5887561 + ], + [ + 2116672, + 5887572 + ], + [ + 2116679, + 5887583 + ], + [ + 2116687, + 5887592 + ], + [ + 2116694, + 5887602 + ], + [ + 2116700, + 5887613 + ], + [ + 2116710, + 5887623 + ], + [ + 2116716, + 5887634 + ], + [ + 2116722, + 5887644 + ], + [ + 2116730, + 5887653 + ], + [ + 2116736, + 5887665 + ], + [ + 2116743, + 5887676 + ], + [ + 2116750, + 5887685 + ], + [ + 2116757, + 5887696 + ], + [ + 2116763, + 5887707 + ], + [ + 2116771, + 5887717 + ], + [ + 2116777, + 5887727 + ], + [ + 2116784, + 5887738 + ], + [ + 2116792, + 5887748 + ], + [ + 2116799, + 5887759 + ], + [ + 2116805, + 5887769 + ], + [ + 2116813, + 5887779 + ], + [ + 2116819, + 5887790 + ], + [ + 2116825, + 5887801 + ], + [ + 2116834, + 5887810 + ], + [ + 2116840, + 5887821 + ], + [ + 2116847, + 5887832 + ], + [ + 2116854, + 5887842 + ], + [ + 2116861, + 5887852 + ], + [ + 2116867, + 5887863 + ], + [ + 2116875, + 5887873 + ], + [ + 2116881, + 5887884 + ], + [ + 2116888, + 5887894 + ], + [ + 2116895, + 5887904 + ], + [ + 2116902, + 5887916 + ], + [ + 2116908, + 5887927 + ], + [ + 2116917, + 5887936 + ], + [ + 2116923, + 5887947 + ], + [ + 2116929, + 5887958 + ], + [ + 2116938, + 5887968 + ], + [ + 2116944, + 5887978 + ], + [ + 2116951, + 5887989 + ], + [ + 2116959, + 5887999 + ], + [ + 2116966, + 5888010 + ], + [ + 2116972, + 5888020 + ], + [ + 2116981, + 5888030 + ], + [ + 2116987, + 5888041 + ], + [ + 2116994, + 5888052 + ], + [ + 2117002, + 5888060 + ], + [ + 2117009, + 5888071 + ], + [ + 2117015, + 5888082 + ], + [ + 2117021, + 5888092 + ], + [ + 2117028, + 5888102 + ], + [ + 2117034, + 5888113 + ], + [ + 2117043, + 5888123 + ], + [ + 2117049, + 5888134 + ], + [ + 2117056, + 5888144 + ], + [ + 2117063, + 5888154 + ], + [ + 2117070, + 5888165 + ], + [ + 2117076, + 5888176 + ], + [ + 2117085, + 5888185 + ], + [ + 2117091, + 5888196 + ], + [ + 2117098, + 5888207 + ], + [ + 2117106, + 5888216 + ], + [ + 2117112, + 5888227 + ], + [ + 2117119, + 5888238 + ], + [ + 2117126, + 5888248 + ], + [ + 2117133, + 5888258 + ], + [ + 2117139, + 5888269 + ], + [ + 2117148, + 5888279 + ], + [ + 2117154, + 5888290 + ], + [ + 2117161, + 5888300 + ], + [ + 2117170, + 5888310 + ], + [ + 2117177, + 5888321 + ], + [ + 2117183, + 5888332 + ], + [ + 2117192, + 5888340 + ], + [ + 2117198, + 5888351 + ], + [ + 2117204, + 5888362 + ], + [ + 2117213, + 5888372 + ], + [ + 2117219, + 5888382 + ], + [ + 2117226, + 5888393 + ], + [ + 2117233, + 5888403 + ], + [ + 2117240, + 5888414 + ], + [ + 2117246, + 5888424 + ], + [ + 2117255, + 5888434 + ], + [ + 2117261, + 5888445 + ], + [ + 2117268, + 5888456 + ], + [ + 2117276, + 5888464 + ], + [ + 2117283, + 5888475 + ], + [ + 2117289, + 5888486 + ], + [ + 2117297, + 5888495 + ], + [ + 2117304, + 5888506 + ], + [ + 2117310, + 5888517 + ], + [ + 2117319, + 5888526 + ], + [ + 2117325, + 5888536 + ], + [ + 2117333, + 5888547 + ], + [ + 2117341, + 5888557 + ], + [ + 2117348, + 5888568 + ], + [ + 2117354, + 5888578 + ], + [ + 2117362, + 5888588 + ], + [ + 2117368, + 5888599 + ], + [ + 2117375, + 5888610 + ], + [ + 2117382, + 5888619 + ], + [ + 2117388, + 5888630 + ], + [ + 2117395, + 5888641 + ], + [ + 2117403, + 5888651 + ], + [ + 2117410, + 5888661 + ], + [ + 2117416, + 5888672 + ], + [ + 2117426, + 5888682 + ], + [ + 2117432, + 5888693 + ], + [ + 2117439, + 5888703 + ], + [ + 2117447, + 5888713 + ], + [ + 2117454, + 5888724 + ], + [ + 2117460, + 5888735 + ], + [ + 2117469, + 5888743 + ], + [ + 2117475, + 5888754 + ], + [ + 2117481, + 5888765 + ], + [ + 2117488, + 5888775 + ], + [ + 2117495, + 5888785 + ], + [ + 2117502, + 5888796 + ], + [ + 2117509, + 5888807 + ], + [ + 2117516, + 5888818 + ], + [ + 2117522, + 5888828 + ], + [ + 2117530, + 5888838 + ], + [ + 2117537, + 5888849 + ], + [ + 2117544, + 5888860 + ], + [ + 2117551, + 5888869 + ], + [ + 2117558, + 5888880 + ], + [ + 2117564, + 5888891 + ], + [ + 2117572, + 5888901 + ], + [ + 2117578, + 5888911 + ], + [ + 2117584, + 5888922 + ], + [ + 2117593, + 5888932 + ], + [ + 2117599, + 5888943 + ], + [ + 2117606, + 5888953 + ], + [ + 2117614, + 5888963 + ], + [ + 2117621, + 5888974 + ], + [ + 2117627, + 5888984 + ], + [ + 2117637, + 5888993 + ], + [ + 2117643, + 5889004 + ], + [ + 2117650, + 5889015 + ], + [ + 2117658, + 5889023 + ], + [ + 2117665, + 5889034 + ], + [ + 2117671, + 5889045 + ], + [ + 2117679, + 5889055 + ], + [ + 2117686, + 5889065 + ], + [ + 2117692, + 5889076 + ], + [ + 2117701, + 5889085 + ], + [ + 2117707, + 5889096 + ], + [ + 2117714, + 5889106 + ], + [ + 2117721, + 5889116 + ], + [ + 2117729, + 5889127 + ], + [ + 2117735, + 5889138 + ], + [ + 2117743, + 5889148 + ], + [ + 2117749, + 5889159 + ], + [ + 2117756, + 5889170 + ], + [ + 2117763, + 5889180 + ], + [ + 2117770, + 5889190 + ], + [ + 2117777, + 5889201 + ], + [ + 2117784, + 5889211 + ], + [ + 2117791, + 5889222 + ], + [ + 2117797, + 5889232 + ], + [ + 2117806, + 5889242 + ], + [ + 2117812, + 5889253 + ], + [ + 2117819, + 5889264 + ], + [ + 2117827, + 5889273 + ], + [ + 2117834, + 5889284 + ], + [ + 2117840, + 5889295 + ], + [ + 2117848, + 5889303 + ], + [ + 2117854, + 5889314 + ], + [ + 2117860, + 5889325 + ], + [ + 2117869, + 5889336 + ], + [ + 2117875, + 5889346 + ], + [ + 2117882, + 5889357 + ], + [ + 2117889, + 5889366 + ], + [ + 2117896, + 5889377 + ], + [ + 2117902, + 5889388 + ], + [ + 2117910, + 5889398 + ], + [ + 2117916, + 5889409 + ], + [ + 2117924, + 5889420 + ], + [ + 2117931, + 5889429 + ], + [ + 2117938, + 5889440 + ], + [ + 2117944, + 5889451 + ], + [ + 2117953, + 5889461 + ], + [ + 2117959, + 5889471 + ], + [ + 2117965, + 5889482 + ], + [ + 2117973, + 5889492 + ], + [ + 2117979, + 5889503 + ], + [ + 2117986, + 5889513 + ], + [ + 2117993, + 5889523 + ], + [ + 2118000, + 5889534 + ], + [ + 2118006, + 5889545 + ], + [ + 2118015, + 5889554 + ], + [ + 2118021, + 5889565 + ], + [ + 2118028, + 5889576 + ], + [ + 2118036, + 5889586 + ], + [ + 2118043, + 5889596 + ], + [ + 2118049, + 5889607 + ], + [ + 2118057, + 5889617 + ], + [ + 2118063, + 5889628 + ], + [ + 2118069, + 5889638 + ], + [ + 2118078, + 5889648 + ], + [ + 2118084, + 5889659 + ], + [ + 2118091, + 5889670 + ], + [ + 2118098, + 5889679 + ], + [ + 2118105, + 5889690 + ], + [ + 2118111, + 5889701 + ], + [ + 2118119, + 5889711 + ], + [ + 2118125, + 5889721 + ], + [ + 2118132, + 5889732 + ], + [ + 2118139, + 5889742 + ], + [ + 2118146, + 5889753 + ], + [ + 2118152, + 5889763 + ], + [ + 2118160, + 5889773 + ], + [ + 2118167, + 5889785 + ], + [ + 2118173, + 5889796 + ], + [ + 2118181, + 5889804 + ], + [ + 2118187, + 5889816 + ], + [ + 2118194, + 5889827 + ], + [ + 2118203, + 5889836 + ], + [ + 2118210, + 5889846 + ], + [ + 2118216, + 5889857 + ], + [ + 2118226, + 5889866 + ], + [ + 2118232, + 5889878 + ], + [ + 2118239, + 5889888 + ], + [ + 2118247, + 5889897 + ], + [ + 2118253, + 5889908 + ], + [ + 2118260, + 5889919 + ], + [ + 2118267, + 5889929 + ], + [ + 2118274, + 5889940 + ], + [ + 2118280, + 5889951 + ], + [ + 2118288, + 5889961 + ], + [ + 2118294, + 5889971 + ], + [ + 2118301, + 5889982 + ], + [ + 2118308, + 5889992 + ], + [ + 2118315, + 5890003 + ], + [ + 2118322, + 5890013 + ], + [ + 2118330, + 5890023 + ], + [ + 2118336, + 5890034 + ], + [ + 2118343, + 5890044 + ], + [ + 2118351, + 5890053 + ], + [ + 2118357, + 5890064 + ], + [ + 2118364, + 5890075 + ], + [ + 2118372, + 5890084 + ], + [ + 2118379, + 5890095 + ], + [ + 2118385, + 5890106 + ], + [ + 2118393, + 5890116 + ], + [ + 2118399, + 5890126 + ], + [ + 2118406, + 5890137 + ], + [ + 2118413, + 5890147 + ], + [ + 2118421, + 5890158 + ], + [ + 2118427, + 5890168 + ], + [ + 2118434, + 5890178 + ], + [ + 2118441, + 5890189 + ], + [ + 2118447, + 5890200 + ], + [ + 2118456, + 5890209 + ], + [ + 2118462, + 5890220 + ], + [ + 2118469, + 5890231 + ], + [ + 2118477, + 5890241 + ], + [ + 2118484, + 5890251 + ], + [ + 2118490, + 5890262 + ], + [ + 2118498, + 5890272 + ], + [ + 2118504, + 5890283 + ], + [ + 2118511, + 5890293 + ], + [ + 2118518, + 5890303 + ], + [ + 2118525, + 5890314 + ], + [ + 2118531, + 5890325 + ], + [ + 2118540, + 5890334 + ], + [ + 2118546, + 5890345 + ], + [ + 2118552, + 5890356 + ], + [ + 2118559, + 5890367 + ], + [ + 2118566, + 5890377 + ], + [ + 2118573, + 5890388 + ], + [ + 2118580, + 5890398 + ], + [ + 2118587, + 5890409 + ], + [ + 2118593, + 5890419 + ], + [ + 2118601, + 5890429 + ], + [ + 2118607, + 5890440 + ], + [ + 2118614, + 5890451 + ], + [ + 2118621, + 5890461 + ], + [ + 2118628, + 5890472 + ], + [ + 2118634, + 5890483 + ], + [ + 2118643, + 5890493 + ], + [ + 2118649, + 5890503 + ], + [ + 2118656, + 5890514 + ], + [ + 2118663, + 5890524 + ], + [ + 2118669, + 5890535 + ], + [ + 2118676, + 5890545 + ], + [ + 2118684, + 5890554 + ], + [ + 2118691, + 5890565 + ], + [ + 2118698, + 5890576 + ], + [ + 2118706, + 5890585 + ], + [ + 2118712, + 5890596 + ], + [ + 2118719, + 5890607 + ], + [ + 2118727, + 5890617 + ], + [ + 2118734, + 5890627 + ], + [ + 2118740, + 5890638 + ], + [ + 2118747, + 5890648 + ], + [ + 2118754, + 5890659 + ], + [ + 2118760, + 5890669 + ], + [ + 2118768, + 5890679 + ], + [ + 2118774, + 5890690 + ], + [ + 2118781, + 5890701 + ], + [ + 2118789, + 5890710 + ], + [ + 2118796, + 5890721 + ], + [ + 2118803, + 5890732 + ], + [ + 2118811, + 5890742 + ], + [ + 2118817, + 5890752 + ], + [ + 2118824, + 5890763 + ], + [ + 2118832, + 5890772 + ], + [ + 2118839, + 5890783 + ], + [ + 2118846, + 5890793 + ], + [ + 2118853, + 5890803 + ], + [ + 2118860, + 5890814 + ], + [ + 2118866, + 5890825 + ], + [ + 2118875, + 5890834 + ], + [ + 2118881, + 5890845 + ], + [ + 2118888, + 5890856 + ], + [ + 2118895, + 5890866 + ], + [ + 2118902, + 5890876 + ], + [ + 2118908, + 5890887 + ], + [ + 2118916, + 5890897 + ], + [ + 2118922, + 5890908 + ], + [ + 2118930, + 5890918 + ], + [ + 2118937, + 5890928 + ], + [ + 2118944, + 5890939 + ], + [ + 2118951, + 5890949 + ], + [ + 2118958, + 5890959 + ], + [ + 2118965, + 5890970 + ], + [ + 2118972, + 5890981 + ], + [ + 2118980, + 5890990 + ], + [ + 2118987, + 5891001 + ], + [ + 2118994, + 5891011 + ], + [ + 2119000, + 5891022 + ], + [ + 2119008, + 5891031 + ], + [ + 2119014, + 5891042 + ], + [ + 2119022, + 5891052 + ], + [ + 2119028, + 5891063 + ], + [ + 2119035, + 5891073 + ], + [ + 2119042, + 5891084 + ], + [ + 2119048, + 5891094 + ], + [ + 2119056, + 5891105 + ], + [ + 2119062, + 5891115 + ], + [ + 2119069, + 5891126 + ], + [ + 2119076, + 5891137 + ], + [ + 2119084, + 5891147 + ], + [ + 2119090, + 5891157 + ], + [ + 2119097, + 5891168 + ], + [ + 2119104, + 5891178 + ], + [ + 2119111, + 5891189 + ], + [ + 2119118, + 5891199 + ], + [ + 2119126, + 5891209 + ], + [ + 2119132, + 5891220 + ], + [ + 2119138, + 5891231 + ], + [ + 2119147, + 5891240 + ], + [ + 2119153, + 5891251 + ], + [ + 2119160, + 5891262 + ], + [ + 2119168, + 5891272 + ], + [ + 2119175, + 5891281 + ], + [ + 2119182, + 5891292 + ], + [ + 2119190, + 5891302 + ], + [ + 2119197, + 5891313 + ], + [ + 2119204, + 5891323 + ], + [ + 2119212, + 5891333 + ], + [ + 2119219, + 5891344 + ], + [ + 2119225, + 5891355 + ], + [ + 2119233, + 5891363 + ], + [ + 2119241, + 5891374 + ], + [ + 2119247, + 5891385 + ], + [ + 2119255, + 5891394 + ], + [ + 2119261, + 5891405 + ], + [ + 2119269, + 5891416 + ], + [ + 2119275, + 5891426 + ], + [ + 2119283, + 5891436 + ], + [ + 2119289, + 5891447 + ], + [ + 2119297, + 5891457 + ], + [ + 2119303, + 5891468 + ], + [ + 2119311, + 5891478 + ], + [ + 2119319, + 5891487 + ], + [ + 2119325, + 5891498 + ], + [ + 2119332, + 5891509 + ], + [ + 2119340, + 5891518 + ], + [ + 2119347, + 5891529 + ], + [ + 2119353, + 5891540 + ], + [ + 2119361, + 5891550 + ], + [ + 2119368, + 5891560 + ], + [ + 2119375, + 5891571 + ], + [ + 2119381, + 5891581 + ], + [ + 2119389, + 5891592 + ], + [ + 2119395, + 5891602 + ], + [ + 2119403, + 5891612 + ], + [ + 2119410, + 5891623 + ], + [ + 2119416, + 5891634 + ], + [ + 2119424, + 5891643 + ], + [ + 2119431, + 5891654 + ], + [ + 2119438, + 5891665 + ], + [ + 2119445, + 5891675 + ], + [ + 2119452, + 5891685 + ], + [ + 2119458, + 5891696 + ], + [ + 2119466, + 5891706 + ], + [ + 2119473, + 5891717 + ], + [ + 2119480, + 5891727 + ], + [ + 2119486, + 5891737 + ], + [ + 2119493, + 5891748 + ], + [ + 2119499, + 5891759 + ], + [ + 2119506, + 5891768 + ], + [ + 2119513, + 5891779 + ], + [ + 2119520, + 5891790 + ], + [ + 2119527, + 5891801 + ], + [ + 2119533, + 5891811 + ], + [ + 2119541, + 5891821 + ], + [ + 2119547, + 5891832 + ], + [ + 2119554, + 5891843 + ], + [ + 2119561, + 5891853 + ], + [ + 2119569, + 5891863 + ], + [ + 2119575, + 5891874 + ], + [ + 2119582, + 5891885 + ], + [ + 2119588, + 5891895 + ], + [ + 2119596, + 5891905 + ], + [ + 2119602, + 5891916 + ], + [ + 2119609, + 5891926 + ], + [ + 2119616, + 5891936 + ], + [ + 2119623, + 5891947 + ], + [ + 2119630, + 5891957 + ], + [ + 2119637, + 5891968 + ], + [ + 2119644, + 5891978 + ], + [ + 2119651, + 5891989 + ], + [ + 2119659, + 5891999 + ], + [ + 2119665, + 5892010 + ], + [ + 2119672, + 5892020 + ], + [ + 2119679, + 5892031 + ], + [ + 2119686, + 5892042 + ], + [ + 2119693, + 5892051 + ], + [ + 2119701, + 5892061 + ], + [ + 2119707, + 5892072 + ], + [ + 2119714, + 5892082 + ], + [ + 2119722, + 5892093 + ], + [ + 2119728, + 5892103 + ], + [ + 2119737, + 5892113 + ], + [ + 2119743, + 5892124 + ], + [ + 2119751, + 5892134 + ], + [ + 2119758, + 5892143 + ], + [ + 2119766, + 5892154 + ], + [ + 2119772, + 5892165 + ], + [ + 2119782, + 5892173 + ], + [ + 2119788, + 5892184 + ], + [ + 2119794, + 5892195 + ], + [ + 2119802, + 5892205 + ], + [ + 2119809, + 5892215 + ], + [ + 2119816, + 5892226 + ], + [ + 2119823, + 5892236 + ], + [ + 2119831, + 5892246 + ], + [ + 2119837, + 5892256 + ], + [ + 2119844, + 5892267 + ], + [ + 2119851, + 5892278 + ], + [ + 2119858, + 5892288 + ], + [ + 2119865, + 5892298 + ], + [ + 2119872, + 5892308 + ], + [ + 2119879, + 5892319 + ], + [ + 2119884, + 5892330 + ], + [ + 2119892, + 5892340 + ], + [ + 2119898, + 5892350 + ], + [ + 2119906, + 5892361 + ], + [ + 2119912, + 5892372 + ], + [ + 2119919, + 5892382 + ], + [ + 2119926, + 5892392 + ], + [ + 2119933, + 5892403 + ], + [ + 2119939, + 5892414 + ], + [ + 2119947, + 5892423 + ], + [ + 2119953, + 5892434 + ], + [ + 2119961, + 5892445 + ], + [ + 2119968, + 5892456 + ], + [ + 2119975, + 5892466 + ], + [ + 2119982, + 5892477 + ], + [ + 2119990, + 5892487 + ], + [ + 2119996, + 5892498 + ], + [ + 2120002, + 5892508 + ], + [ + 2120011, + 5892518 + ], + [ + 2120017, + 5892529 + ], + [ + 2120024, + 5892540 + ], + [ + 2120031, + 5892549 + ], + [ + 2120039, + 5892560 + ], + [ + 2120045, + 5892571 + ], + [ + 2120053, + 5892580 + ], + [ + 2120059, + 5892590 + ], + [ + 2120067, + 5892601 + ], + [ + 2120073, + 5892612 + ], + [ + 2120080, + 5892623 + ], + [ + 2120087, + 5892633 + ], + [ + 2120094, + 5892642 + ], + [ + 2120102, + 5892653 + ], + [ + 2120108, + 5892664 + ], + [ + 2120118, + 5892672 + ], + [ + 2120124, + 5892683 + ], + [ + 2120132, + 5892694 + ], + [ + 2120140, + 5892702 + ], + [ + 2120148, + 5892713 + ], + [ + 2120154, + 5892724 + ], + [ + 2120163, + 5892732 + ], + [ + 2120170, + 5892743 + ], + [ + 2120177, + 5892753 + ], + [ + 2120186, + 5892763 + ], + [ + 2120192, + 5892773 + ], + [ + 2120200, + 5892783 + ], + [ + 2120206, + 5892793 + ], + [ + 2120214, + 5892804 + ], + [ + 2120221, + 5892814 + ], + [ + 2120228, + 5892824 + ], + [ + 2120235, + 5892834 + ], + [ + 2120242, + 5892845 + ] + ] + ], + "type": "AnyCrsMultiLineString" + }, + "properties": {}, + "type": "AnyCrsFeature" + } + ], + "persistableReferenceCrs": "{\"authCode\":{\"auth\":\"OSDU\",\"code\":\"2193001\"},\"lateBoundCRS\":{\"authCode\":{\"auth\":\"EPSG\",\"code\":\"2193\"},\"name\":\"NZGD_2000_New_Zealand_Transverse_Mercator\",\"type\":\"LBC\",\"ver\":\"PE_10_9_1\",\"wkt\":\"PROJCS[\\\"NZGD_2000_New_Zealand_Transverse_Mercator\\\",GEOGCS[\\\"GCS_NZGD_2000\\\",DATUM[\\\"D_NZGD_2000\\\",SPHEROID[\\\"GRS_1980\\\",6378137.0,298.257222101]],PRIMEM[\\\"Greenwich\\\",0.0],UNIT[\\\"Degree\\\",0.0174532925199433]],PROJECTION[\\\"Transverse_Mercator\\\"],PARAMETER[\\\"False_Easting\\\",1600000.0],PARAMETER[\\\"False_Northing\\\",10000000.0],PARAMETER[\\\"Central_Meridian\\\",173.0],PARAMETER[\\\"Scale_Factor\\\",0.9996],PARAMETER[\\\"Latitude_Of_Origin\\\",0.0],UNIT[\\\"Meter\\\",1.0],AUTHORITY[\\\"EPSG\\\",2193]]\"},\"name\":\"NZGD2000 * OSG-Nzl / New Zealand Transverse Mercator 2000 [2193,1565]\",\"singleCT\":{\"authCode\":{\"auth\":\"EPSG\",\"code\":\"1565\"},\"name\":\"NZGD_2000_To_WGS_1984_1\",\"type\":\"ST\",\"ver\":\"PE_10_9_1\",\"wkt\":\"GEOGTRAN[\\\"NZGD_2000_To_WGS_1984_1\\\",GEOGCS[\\\"GCS_NZGD_2000\\\",DATUM[\\\"D_NZGD_2000\\\",SPHEROID[\\\"GRS_1980\\\",6378137.0,298.257222101]],PRIMEM[\\\"Greenwich\\\",0.0],UNIT[\\\"Degree\\\",0.0174532925199433]],GEOGCS[\\\"GCS_WGS_1984\\\",DATUM[\\\"D_WGS_1984\\\",SPHEROID[\\\"WGS_1984\\\",6378137.0,298.257223563]],PRIMEM[\\\"Greenwich\\\",0.0],UNIT[\\\"Degree\\\",0.0174532925199433]],METHOD[\\\"Geocentric_Translation\\\"],PARAMETER[\\\"X_Axis_Translation\\\",0.0],PARAMETER[\\\"Y_Axis_Translation\\\",0.0],PARAMETER[\\\"Z_Axis_Translation\\\",0.0],OPERATIONACCURACY[1.0],AUTHORITY[\\\"EPSG\\\",1565]]\"},\"type\":\"EBC\",\"ver\":\"PE_10_9_1\"}", + "type": "AnyCrsFeatureCollection" + } + } + } + } +] diff --git a/testing/indexer-test-core/src/main/resources/testData/index_record_seismic_survey.schema.json b/testing/indexer-test-core/src/main/resources/testData/index_record_seismic_survey.schema.json new file mode 100644 index 0000000000000000000000000000000000000000..dc7c5c6d4662dd5c8f32b620145cb5340eea5675 --- /dev/null +++ b/testing/indexer-test-core/src/main/resources/testData/index_record_seismic_survey.schema.json @@ -0,0 +1,2388 @@ +{ + "schemaInfo": { + "schemaIdentity": { + "authority": "tenant1", + "source": "indexer", + "entityType": "decimation-Integration", + "schemaVersionMajor": "1", + "schemaVersionMinor": "0", + "schemaVersionPatch": "0" + }, + "status": "DEVELOPMENT" + }, + "schema": { + "x-osdu-inheriting-from-kind": [{ + "kind": "osdu:wks:AbstractProject:1.0.0", + "name": "Project" + } + ], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:master-data--SeismicAcquisitionSurvey:1.0.0", + "description": "A seismic acquisition project is a type of business project that deploys resources to the field to record seismic data. It may be referred to as a field survey, acquisition survey, or field program. It is not the same as the geometry of the deployed equipment (nav), which is a work product component.", + "title": "SeismicAcquisitionSurvey", + "type": "object", + "required": [ + "kind", + "acl", + "legal" + ], + "x-osdu-virtual-properties": { + "data.VirtualProperties.DefaultLocation": { + "type": "object", + "priority": [{ + "path": "data.SpatialLocation" + } + ] + }, + "data.VirtualProperties.DefaultName": { + "type": "string", + "priority": [{ + "path": "data.ProjectName" + } + ] + } + }, + "additionalProperties": false, + "definitions": { + "osdu:wks:AbstractCommonResources:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractCommonResources:1.0.0", + "description": "Common resources to be injected at root 'data' level for every entity, which is persistable in Storage. The insertion is performed by the OsduSchemaComposer script.", + "x-osdu-review-status": "Accepted", + "title": "OSDU Common Resources", + "type": "object", + "properties": { + "ResourceHomeRegionID": { + "x-osdu-relationship": [{ + "EntityType": "OSDURegion", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-OSDURegion:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The name of the home [cloud environment] region for this OSDU resource object.", + "type": "string", + "title": "Resource Home Region ID" + }, + "ResourceHostRegionIDs": { + "description": "The name of the host [cloud environment] region(s) for this OSDU resource object.", + "type": "array", + "title": "Resource Host Region ID", + "items": { + "x-osdu-relationship": [{ + "EntityType": "OSDURegion", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-OSDURegion:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "type": "string" + } + }, + "ResourceLifecycleStatus": { + "x-osdu-relationship": [{ + "EntityType": "ResourceLifecycleStatus", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-ResourceLifecycleStatus:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Describes the current Resource Lifecycle status.", + "type": "string", + "title": "Resource Lifecycle Status" + }, + "ResourceSecurityClassification": { + "x-osdu-relationship": [{ + "EntityType": "ResourceSecurityClassification", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-ResourceSecurityClassification:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Classifies the security level of the resource.", + "type": "string", + "title": "Resource Security Classification" + }, + "ResourceCurationStatus": { + "x-osdu-relationship": [{ + "EntityType": "ResourceCurationStatus", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-ResourceCurationStatus:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Describes the current Curation status.", + "type": "string", + "title": "Resource Curation Status" + }, + "ExistenceKind": { + "x-osdu-relationship": [{ + "EntityType": "ExistenceKind", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-ExistenceKind:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Where does this data resource sit in the cradle-to-grave span of its existence?", + "type": "string", + "title": "Existence Kind" + }, + "TechnicalAssuranceID": { + "x-osdu-relationship": [{ + "EntityType": "TechnicalAssuranceType", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-TechnicalAssuranceType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "DEPRECATED: Describes a record's overall suitability for general business consumption based on data quality. Clarifications: Since Certified is the highest classification of suitable quality, any further change or versioning of a Certified record should be carefully considered and justified. If a Technical Assurance value is not populated then one can assume the data has not been evaluated or its quality is unknown (=Unevaluated). Technical Assurance values are not intended to be used for the identification of a single \"preferred\" or \"definitive\" record by comparison with other records.", + "type": "string", + "title": "Technical Assurance ID" + }, + "Source": { + "description": "The entity that produced the record, or from which it is received; could be an organization, agency, system, internal team, or individual. For informational purposes only, the list of sources is not governed.", + "type": "string", + "title": "Data Source" + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractCommonResources.1.0.0.json" + }, + "osdu:wks:AbstractMetaItem:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "oneOf": [{ + "title": "FrameOfReferenceUOM", + "type": "object", + "properties": { + "persistableReference": { + "description": "The self-contained, persistable reference string uniquely identifying the Unit.", + "title": "UOM Persistable Reference", + "type": "string", + "example": "{\"abcd\":{\"a\":0.0,\"b\":1200.0,\"c\":3937.0,\"d\":0.0},\"symbol\":\"ft[US]\",\"baseMeasurement\":{\"ancestry\":\"L\",\"type\":\"UM\"},\"type\":\"UAD\"}" + }, + "kind": { + "const": "Unit", + "description": "The kind of reference, 'Unit' for FrameOfReferenceUOM.", + "title": "UOM Reference Kind", + "type": "string" + }, + "propertyNames": { + "description": "The list of property names, to which this meta data item provides Unit context to. A full path like \"StructureA.PropertyB\" is required to define a unique context; \"data\" is omitted since frame-of reference normalization only applies to the data block.", + "title": "UOM Property Names", + "type": "array", + "items": { + "type": "string" + }, + "example": [ + "HorizontalDeflection.EastWest", + "HorizontalDeflection.NorthSouth" + ] + }, + "name": { + "description": "The unit symbol or name of the unit.", + "title": "UOM Unit Symbol", + "type": "string", + "example": "ft[US]" + }, + "unitOfMeasureID": { + "x-osdu-relationship": [{ + "EntityType": "UnitOfMeasure", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-UnitOfMeasure:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "SRN to unit of measure reference.", + "type": "string", + "example": "namespace:reference-data--UnitOfMeasure:ftUS:" + } + }, + "required": [ + "kind", + "persistableReference" + ] + }, { + "title": "FrameOfReferenceCRS", + "type": "object", + "properties": { + "coordinateReferenceSystemID": { + "x-osdu-relationship": [{ + "EntityType": "CoordinateReferenceSystem", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-CoordinateReferenceSystem:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "SRN to CRS reference.", + "type": "string", + "example": "namespace:reference-data--CoordinateReferenceSystem:Projected:EPSG::32615:" + }, + "persistableReference": { + "description": "The self-contained, persistable reference string uniquely identifying the CRS.", + "title": "CRS Persistable Reference", + "type": "string", + "example": "{\"authCode\":{\"auth\":\"EPSG\",\"code\":\"32615\"},\"name\":\"WGS_1984_UTM_Zone_15N\",\"type\":\"LBC\",\"ver\":\"PE_10_9_1\",\"wkt\":\"PROJCS[\\\"WGS_1984_UTM_Zone_15N\\\",GEOGCS[\\\"GCS_WGS_1984\\\",DATUM[\\\"D_WGS_1984\\\",SPHEROID[\\\"WGS_1984\\\",6378137.0,298.257223563]],PRIMEM[\\\"Greenwich\\\",0.0],UNIT[\\\"Degree\\\",0.0174532925199433]],PROJECTION[\\\"Transverse_Mercator\\\"],PARAMETER[\\\"False_Easting\\\",500000.0],PARAMETER[\\\"False_Northing\\\",0.0],PARAMETER[\\\"Central_Meridian\\\",-93.0],PARAMETER[\\\"Scale_Factor\\\",0.9996],PARAMETER[\\\"Latitude_Of_Origin\\\",0.0],UNIT[\\\"Meter\\\",1.0],AUTHORITY[\\\"EPSG\\\",32615]]\"}" + }, + "kind": { + "const": "CRS", + "description": "The kind of reference, constant 'CRS' for FrameOfReferenceCRS.", + "title": "CRS Reference Kind", + "type": "string" + }, + "propertyNames": { + "description": "The list of property names, to which this meta data item provides CRS context to. A full path like \"StructureA.PropertyB\" is required to define a unique context; \"data\" is omitted since frame-of reference normalization only applies to the data block.", + "title": "CRS Property Names", + "type": "array", + "items": { + "type": "string" + }, + "example": [ + "KickOffPosition.X", + "KickOffPosition.Y" + ] + }, + "name": { + "description": "The name of the CRS.", + "title": "CRS Name", + "type": "string", + "example": "WGS 84 / UTM zone 15N" + } + }, + "required": [ + "kind", + "persistableReference" + ] + }, { + "title": "FrameOfReferenceDateTime", + "type": "object", + "properties": { + "persistableReference": { + "description": "The self-contained, persistable reference string uniquely identifying DateTime reference.", + "title": "DateTime Persistable Reference", + "type": "string", + "example": "{\"format\":\"yyyy-MM-ddTHH:mm:ssZ\",\"timeZone\":\"UTC\",\"type\":\"DTM\"}" + }, + "kind": { + "const": "DateTime", + "description": "The kind of reference, constant 'DateTime', for FrameOfReferenceDateTime.", + "title": "DateTime Reference Kind", + "type": "string" + }, + "propertyNames": { + "description": "The list of property names, to which this meta data item provides DateTime context to. A full path like \"StructureA.PropertyB\" is required to define a unique context; \"data\" is omitted since frame-of reference normalization only applies to the data block.", + "title": "DateTime Property Names", + "type": "array", + "items": { + "type": "string" + }, + "example": [ + "Acquisition.StartTime", + "Acquisition.EndTime" + ] + }, + "name": { + "description": "The name of the DateTime format and reference.", + "title": "DateTime Name", + "type": "string", + "example": "UTC" + } + }, + "required": [ + "kind", + "persistableReference" + ] + }, { + "title": "FrameOfReferenceAzimuthReference", + "type": "object", + "properties": { + "persistableReference": { + "description": "The self-contained, persistable reference string uniquely identifying AzimuthReference.", + "title": "AzimuthReference Persistable Reference", + "type": "string", + "example": "{\"code\":\"TrueNorth\",\"type\":\"AZR\"}" + }, + "kind": { + "const": "AzimuthReference", + "description": "The kind of reference, constant 'AzimuthReference', for FrameOfReferenceAzimuthReference.", + "title": "AzimuthReference Reference Kind", + "type": "string" + }, + "propertyNames": { + "description": "The list of property names, to which this meta data item provides AzimuthReference context to. A full path like \"StructureA.PropertyB\" is required to define a unique context; \"data\" is omitted since frame-of reference normalization only applies to the data block.", + "title": "AzimuthReference Property Names", + "type": "array", + "items": { + "type": "string" + }, + "example": [ + "Bearing" + ] + }, + "name": { + "description": "The name of the CRS or the symbol/name of the unit.", + "title": "AzimuthReference Name", + "type": "string", + "example": "TrueNorth" + } + }, + "required": [ + "kind", + "persistableReference" + ] + } + ], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractMetaItem:1.0.0", + "description": "A meta data item, which allows the association of named properties or property values to a Unit/Measurement/CRS/Azimuth/Time context.", + "title": "Frame of Reference Meta Data Item", + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractMetaItem.1.0.0.json" + }, + "osdu:wks:AbstractLegalParentList:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractLegalParentList:1.0.0", + "description": "A list of entity id:version references to record instances recorded in the data platform, from which the current record is derived and from which the legal tags must be derived. This structure is included by the SystemProperties \"ancestry\", which is part of all OSDU records. Not extensible.", + "additionalProperties": false, + "title": "Parent List", + "type": "object", + "properties": { + "parents": { + "description": "An array of none, one or many entity references of 'direct parents' in the data platform, which mark the current record as a derivative. In contrast to other relationships, the source record version is required. During record creation or update the ancestry.parents[] relationships are used to collect the legal tags from the sources and aggregate them in the legal.legaltags[] array. As a consequence, should e.g., one or more of the legal tags of the source data expire, the access to the derivatives is also terminated. For details, see ComplianceService tutorial, 'Creating derivative Records'.", + "title": "Parents", + "type": "array", + "items": { + "x-osdu-relationship": [], + "pattern": "^[\\w\\-\\.]+:[\\w\\-\\.]+:[\\w\\-\\.\\:\\%]+:[0-9]+$", + "type": "string" + }, + "example": [] + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractLegalParentList.1.0.0.json" + }, + "osdu:wks:AbstractGeoContext:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "oneOf": [{ + "$ref": "#/definitions/osdu:wks:AbstractGeoPoliticalContext:1.0.0" + }, { + "$ref": "#/definitions/osdu:wks:AbstractGeoBasinContext:1.0.0" + }, { + "$ref": "#/definitions/osdu:wks:AbstractGeoFieldContext:1.0.0" + }, { + "$ref": "#/definitions/osdu:wks:AbstractGeoPlayContext:1.0.0" + }, { + "$ref": "#/definitions/osdu:wks:AbstractGeoProspectContext:1.0.0" + } + ], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractGeoContext:1.0.0", + "description": "A geographic context to an entity. It can be either a reference to a GeoPoliticalEntity, Basin, Field, Play or Prospect.", + "title": "AbstractGeoContext", + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractGeoContext.1.0.0.json" + }, + "osdu:wks:AbstractFeatureCollection:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractFeatureCollection:1.0.0", + "description": "GeoJSON feature collection as originally published in https://geojson.org/schema/FeatureCollection.json. Attention: the coordinate order is fixed: Longitude first, followed by Latitude, optionally height above MSL (EPSG:5714) as third coordinate.", + "title": "GeoJSON FeatureCollection", + "type": "object", + "required": [ + "type", + "features" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "FeatureCollection" + ] + }, + "features": { + "type": "array", + "items": { + "title": "GeoJSON Feature", + "type": "object", + "required": [ + "type", + "properties", + "geometry" + ], + "properties": { + "geometry": { + "oneOf": [{ + "type": "null" + }, { + "title": "GeoJSON Point", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + }, + "type": { + "type": "string", + "enum": [ + "Point" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "GeoJSON LineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "minItems": 2, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + }, + "type": { + "type": "string", + "enum": [ + "LineString" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "GeoJSON Polygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 4, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "Polygon" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "GeoJSON MultiPoint", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + }, + "type": { + "type": "string", + "enum": [ + "MultiPoint" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "GeoJSON MultiLineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "MultiLineString" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "GeoJSON MultiPolygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "type": "array", + "items": { + "minItems": 4, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "MultiPolygon" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "GeoJSON GeometryCollection", + "type": "object", + "required": [ + "type", + "geometries" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "GeometryCollection" + ] + }, + "geometries": { + "type": "array", + "items": { + "oneOf": [{ + "title": "GeoJSON Point", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + }, + "type": { + "type": "string", + "enum": [ + "Point" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "GeoJSON LineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "minItems": 2, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + }, + "type": { + "type": "string", + "enum": [ + "LineString" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "GeoJSON Polygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 4, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "Polygon" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "GeoJSON MultiPoint", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + }, + "type": { + "type": "string", + "enum": [ + "MultiPoint" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "GeoJSON MultiLineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "MultiLineString" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "GeoJSON MultiPolygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "type": "array", + "items": { + "minItems": 4, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "MultiPolygon" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + } + ] + } + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + } + ] + }, + "type": { + "type": "string", + "enum": [ + "Feature" + ] + }, + "properties": { + "oneOf": [{ + "type": "null" + }, { + "type": "object" + } + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + } + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractFeatureCollection.1.0.0.json" + }, + "osdu:wks:AbstractAnyCrsFeatureCollection:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractAnyCrsFeatureCollection:1.0.0", + "description": "A schema like GeoJSON FeatureCollection with a non-WGS 84 CRS context; based on https://geojson.org/schema/FeatureCollection.json. Attention: the coordinate order is fixed: Longitude/Easting/Westing/X first, followed by Latitude/Northing/Southing/Y, optionally height as third coordinate.", + "title": "AbstractAnyCrsFeatureCollection", + "type": "object", + "required": [ + "type", + "persistableReferenceCrs", + "features" + ], + "properties": { + "CoordinateReferenceSystemID": { + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-CoordinateReferenceSystem:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The CRS reference into the CoordinateReferenceSystem catalog.", + "x-osdu-relationship": [{ + "EntityType": "CoordinateReferenceSystem", + "GroupType": "reference-data" + } + ], + "title": "Coordinate Reference System ID", + "type": "string", + "example": "namespace:reference-data--CoordinateReferenceSystem:BoundProjected:EPSG::32021_EPSG::15851:" + }, + "persistableReferenceCrs": { + "description": "The CRS reference as persistableReference string. If populated, the CoordinateReferenceSystemID takes precedence.", + "type": "string", + "title": "CRS Reference", + "example": "{\"authCode\":{\"auth\":\"OSDU\",\"code\":\"32021079\"},\"lateBoundCRS\":{\"authCode\":{\"auth\":\"EPSG\",\"code\":\"32021\"},\"name\":\"NAD_1927_StatePlane_North_Dakota_South_FIPS_3302\",\"type\":\"LBC\",\"ver\":\"PE_10_9_1\",\"wkt\":\"PROJCS[\\\"NAD_1927_StatePlane_North_Dakota_South_FIPS_3302\\\",GEOGCS[\\\"GCS_North_American_1927\\\",DATUM[\\\"D_North_American_1927\\\",SPHEROID[\\\"Clarke_1866\\\",6378206.4,294.9786982]],PRIMEM[\\\"Greenwich\\\",0.0],UNIT[\\\"Degree\\\",0.0174532925199433]],PROJECTION[\\\"Lambert_Conformal_Conic\\\"],PARAMETER[\\\"False_Easting\\\",2000000.0],PARAMETER[\\\"False_Northing\\\",0.0],PARAMETER[\\\"Central_Meridian\\\",-100.5],PARAMETER[\\\"Standard_Parallel_1\\\",46.18333333333333],PARAMETER[\\\"Standard_Parallel_2\\\",47.48333333333333],PARAMETER[\\\"Latitude_Of_Origin\\\",45.66666666666666],UNIT[\\\"Foot_US\\\",0.3048006096012192],AUTHORITY[\\\"EPSG\\\",32021]]\"},\"name\":\"NAD27 * OGP-Usa Conus / North Dakota CS27 South zone [32021,15851]\",\"singleCT\":{\"authCode\":{\"auth\":\"EPSG\",\"code\":\"15851\"},\"name\":\"NAD_1927_To_WGS_1984_79_CONUS\",\"type\":\"ST\",\"ver\":\"PE_10_9_1\",\"wkt\":\"GEOGTRAN[\\\"NAD_1927_To_WGS_1984_79_CONUS\\\",GEOGCS[\\\"GCS_North_American_1927\\\",DATUM[\\\"D_North_American_1927\\\",SPHEROID[\\\"Clarke_1866\\\",6378206.4,294.9786982]],PRIMEM[\\\"Greenwich\\\",0.0],UNIT[\\\"Degree\\\",0.0174532925199433]],GEOGCS[\\\"GCS_WGS_1984\\\",DATUM[\\\"D_WGS_1984\\\",SPHEROID[\\\"WGS_1984\\\",6378137.0,298.257223563]],PRIMEM[\\\"Greenwich\\\",0.0],UNIT[\\\"Degree\\\",0.0174532925199433]],METHOD[\\\"NADCON\\\"],PARAMETER[\\\"Dataset_conus\\\",0.0],OPERATIONACCURACY[5.0],AUTHORITY[\\\"EPSG\\\",15851]]\"},\"type\":\"EBC\",\"ver\":\"PE_10_9_1\"}" + }, + "features": { + "type": "array", + "items": { + "title": "AnyCrsGeoJSON Feature", + "type": "object", + "required": [ + "type", + "properties", + "geometry" + ], + "properties": { + "geometry": { + "oneOf": [{ + "type": "null" + }, { + "title": "AnyCrsGeoJSON Point", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsPoint" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "AnyCrsGeoJSON LineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "minItems": 2, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsLineString" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "AnyCrsGeoJSON Polygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 4, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsPolygon" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "AnyCrsGeoJSON MultiPoint", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsMultiPoint" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "AnyCrsGeoJSON MultiLineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsMultiLineString" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "AnyCrsGeoJSON MultiPolygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "type": "array", + "items": { + "minItems": 4, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsMultiPolygon" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "AnyCrsGeoJSON GeometryCollection", + "type": "object", + "required": [ + "type", + "geometries" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "AnyCrsGeometryCollection" + ] + }, + "geometries": { + "type": "array", + "items": { + "oneOf": [{ + "title": "AnyCrsGeoJSON Point", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsPoint" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "AnyCrsGeoJSON LineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "minItems": 2, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsLineString" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "AnyCrsGeoJSON Polygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 4, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsPolygon" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "AnyCrsGeoJSON MultiPoint", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsMultiPoint" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "AnyCrsGeoJSON MultiLineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsMultiLineString" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + }, { + "title": "AnyCrsGeoJSON MultiPolygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "coordinates": { + "type": "array", + "items": { + "type": "array", + "items": { + "minItems": 4, + "type": "array", + "items": { + "minItems": 2, + "type": "array", + "items": { + "type": "number" + } + } + } + } + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsMultiPolygon" + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + } + ] + } + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + } + ] + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsFeature" + ] + }, + "properties": { + "oneOf": [{ + "type": "null" + }, { + "type": "object" + } + ] + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + } + } + } + }, + "persistableReferenceUnitZ": { + "description": "The unit of measure for the Z-axis (only for 3-dimensional coordinates, where the CRS does not describe the vertical unit). Note that the direction is upwards positive, i.e. Z means height.", + "type": "string", + "title": "Z-Unit Reference", + "example": "{\"scaleOffset\":{\"scale\":1.0,\"offset\":0.0},\"symbol\":\"m\",\"baseMeasurement\":{\"ancestry\":\"Length\",\"type\":\"UM\"},\"type\":\"USO\"}" + }, + "bbox": { + "minItems": 4, + "type": "array", + "items": { + "type": "number" + } + }, + "persistableReferenceVerticalCrs": { + "description": "The VerticalCRS reference as persistableReference string. If populated, the VerticalCoordinateReferenceSystemID takes precedence. The property is null or empty for 2D geometries. For 3D geometries and absent or null persistableReferenceVerticalCrs the vertical CRS is either provided via persistableReferenceCrs's CompoundCRS or it is implicitly defined as EPSG:5714 MSL height.", + "type": "string", + "title": "Vertical CRS Reference", + "example": "{\"authCode\":{\"auth\":\"EPSG\",\"code\":\"5714\"},\"name\":\"MSL_Height\",\"type\":\"LBC\",\"ver\":\"PE_10_9_1\",\"wkt\":\"VERTCS[\\\"MSL_Height\\\",VDATUM[\\\"Mean_Sea_Level\\\"],PARAMETER[\\\"Vertical_Shift\\\",0.0],PARAMETER[\\\"Direction\\\",1.0],UNIT[\\\"Meter\\\",1.0],AUTHORITY[\\\"EPSG\\\",5714]]\"}" + }, + "type": { + "type": "string", + "enum": [ + "AnyCrsFeatureCollection" + ] + }, + "VerticalCoordinateReferenceSystemID": { + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-CoordinateReferenceSystem:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The explicit VerticalCRS reference into the CoordinateReferenceSystem catalog. This property stays empty for 2D geometries. Absent or empty values for 3D geometries mean the context may be provided by a CompoundCRS in 'CoordinateReferenceSystemID' or implicitly EPSG:5714 MSL height", + "x-osdu-relationship": [{ + "EntityType": "CoordinateReferenceSystem", + "GroupType": "reference-data" + } + ], + "title": "Vertical Coordinate Reference System ID", + "type": "string", + "example": "namespace:reference-data--CoordinateReferenceSystem:Vertical:EPSG::5714:" + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractAnyCrsFeatureCollection.1.0.0.json" + }, + "osdu:wks:AbstractProject:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractProject:1.0.0", + "description": "A Project is a business activity that consumes financial and human resources and produces (digital) work products.", + "x-osdu-review-status": "Accepted", + "title": "AbstractProject", + "type": "object", + "properties": { + "Operator": { + "x-osdu-relationship": [{ + "EntityType": "Organisation", + "GroupType": "master-data" + } + ], + "pattern": "^[\\w\\-\\.]+:master-data\\-\\-Organisation:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The organisation which controlled the conduct of the project.", + "type": "string" + }, + "ProjectBeginDate": { + "format": "date-time", + "description": "The date and time when the Project was initiated.", + "x-osdu-frame-of-reference": "DateTime", + "type": "string" + }, + "ProjectStates": { + "x-osdu-indexing": { + "type": "flattened" + }, + "description": "The history of life cycle states that the Project has been through..", + "type": "array", + "items": { + "description": "The history of life cycle states that the Project has been through..", + "type": "object", + "title": "ProjectStates", + "properties": { + "ProjectStateTypeID": { + "x-osdu-relationship": [{ + "EntityType": "ProjectStateType", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-ProjectStateType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The Project life cycle state from planning to completion.", + "type": "string" + }, + "TerminationDateTime": { + "format": "date-time", + "description": "The date and time at which the state is no longer in effect.", + "x-osdu-frame-of-reference": "DateTime", + "type": "string" + }, + "EffectiveDateTime": { + "format": "date-time", + "description": "The date and time at which the state becomes effective.", + "x-osdu-frame-of-reference": "DateTime", + "type": "string" + } + } + } + }, + "ProjectName": { + "description": "The common or preferred name of a Project.", + "type": "string", + "x-osdu-natural-key": 0 + }, + "Contractors": { + "x-osdu-indexing": { + "type": "nested" + }, + "description": "References to organisations which supplied services to the Project.", + "type": "array", + "items": { + "description": "References to organisations which supplied services to the Project.", + "type": "object", + "title": "Contractors", + "properties": { + "ContractorCrew": { + "description": "Name of the team, unit, crew, party, or other subdivision of the Contractor that provided services.", + "type": "string" + }, + "ContractorOrganisationID": { + "x-osdu-relationship": [{ + "EntityType": "Organisation", + "GroupType": "master-data" + } + ], + "pattern": "^[\\w\\-\\.]+:master-data\\-\\-Organisation:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Reference to a company that provided services.", + "type": "string" + }, + "ContractorTypeID": { + "x-osdu-relationship": [{ + "EntityType": "ContractorType", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-ContractorType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The identifier of a reference value for the role of a contractor providing services, such as Recording, Line Clearing, Positioning, Data Processing.", + "type": "string" + } + } + } + }, + "ProjectID": { + "description": "Native identifier from a Master Data Management System or other trusted source external to OSDU - stored here in order to allow for multi-system connection and synchronization. If used, the \"Source\" property should identify that source system.", + "type": "string", + "title": "External Project Identifier" + }, + "Purpose": { + "description": "Description of the objectives of a Project.", + "type": "string" + }, + "FundsAuthorizations": { + "x-osdu-indexing": { + "type": "nested" + }, + "description": "The history of expenditure approvals.", + "type": "array", + "items": { + "description": "The history of expenditure approvals.", + "type": "object", + "title": "FundsAuthorizations", + "properties": { + "AuthorizationID": { + "description": "Internal Company control number which identifies the allocation of funds to the Project.", + "type": "string" + }, + "FundsAmount": { + "description": "The level of expenditure approved.", + "type": "number" + }, + "EffectiveDateTime": { + "format": "date-time", + "description": "The date and time when the funds were approved.", + "x-osdu-frame-of-reference": "DateTime", + "type": "string" + }, + "CurrencyID": { + "x-osdu-relationship": [{ + "EntityType": "Currency", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-Currency:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Type of currency for the authorized expenditure.", + "type": "string" + } + } + } + }, + "Personnel": { + "x-osdu-indexing": { + "type": "flattened" + }, + "description": "List of key individuals supporting the Project. This could be Abstracted for re-use, and could reference a separate Persons master data object.", + "type": "array", + "items": { + "description": "List of key individuals supporting the Project. This could be Abstracted for re-use, and could reference a separate Persons master data object.", + "type": "object", + "title": "Personnel", + "properties": { + "PersonName": { + "description": "Name of an individual supporting the Project.", + "type": "string" + }, + "ProjectRoleID": { + "x-osdu-relationship": [{ + "EntityType": "ProjectRole", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-ProjectRole:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The identifier of a reference value for the role of an individual supporting a Project, such as Project Manager, Party Chief, Client Representative, Senior Observer.", + "type": "string" + }, + "CompanyOrganisationID": { + "x-osdu-relationship": [{ + "EntityType": "Organisation", + "GroupType": "master-data" + } + ], + "pattern": "^[\\w\\-\\.]+:master-data\\-\\-Organisation:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Reference to the company which employs Personnel.", + "type": "string" + } + } + } + }, + "ProjectSpecifications": { + "x-osdu-indexing": { + "type": "flattened" + }, + "description": "General parameters defining the configuration of the Project. In the case of a seismic acquisition project it is like receiver interval, source depth, source type. In the case of a processing project, it is like replacement velocity, reference datum above mean sea level.", + "type": "array", + "items": { + "description": "General parameters defining the configuration of the Project. In the case of a seismic acquisition project it is like receiver interval, source depth, source type. In the case of a processing project, it is like replacement velocity, reference datum above mean sea level.", + "type": "object", + "title": "ProjectSpecifications", + "properties": { + "ProjectSpecificationQuantity": { + "description": "The value for the specified parameter type.", + "x-osdu-frame-of-reference": "UOM_via_property:UnitOfMeasureID", + "type": "number" + }, + "ProjectSpecificationIndicator": { + "description": "The actual indicator value of the parameter.", + "type": "boolean" + }, + "ProjectSpecificationText": { + "description": "The actual text value of the parameter.", + "type": "string" + }, + "TerminationDateTime": { + "format": "date-time", + "description": "The date and time at which a ProjectSpecification is no longer in effect.", + "x-osdu-frame-of-reference": "DateTime", + "type": "string" + }, + "EffectiveDateTime": { + "format": "date-time", + "description": "The date and time at which a ProjectSpecification becomes effective.", + "x-osdu-frame-of-reference": "DateTime", + "type": "string" + }, + "UnitOfMeasureID": { + "x-osdu-relationship": [{ + "EntityType": "UnitOfMeasure", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-UnitOfMeasure:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The unit for the quantity parameter if overriding the default for this ParameterType, like metre (m in SI units system) for quantity Length.", + "type": "string" + }, + "ProjectSpecificationDateTime": { + "format": "date-time", + "description": "The actual date and time value of the parameter. ISO format permits specification of time or date only.", + "x-osdu-frame-of-reference": "DateTime", + "type": "string" + }, + "ParameterTypeID": { + "x-osdu-relationship": [{ + "EntityType": "ParameterType", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-ParameterType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Parameter type of property or characteristic.", + "type": "string" + } + } + } + }, + "ProjectEndDate": { + "format": "date-time", + "description": "The date and time when the Project was completed.", + "x-osdu-frame-of-reference": "DateTime", + "type": "string" + }, + "ProjectNames": { + "description": "DEPRECATED: please use data.NameAliases. The history of Project names, codes, and other business identifiers.", + "type": "array", + "items": { + "$ref": "#/definitions/osdu:wks:AbstractAliasNames:1.0.0" + } + }, + "ContractIDs": { + "description": "References to applicable agreements in external contract database system of record.", + "type": "array", + "items": { + "x-osdu-relationship": [{ + "EntityType": "Agreement", + "GroupType": "master-data" + } + ], + "pattern": "^[\\w\\-\\.]+:master-data\\-\\-Agreement:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "type": "string" + } + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractProject.1.0.0.json" + }, + "osdu:wks:AbstractGeoFieldContext:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractGeoFieldContext:1.0.0", + "description": "A single, typed field entity reference, which is 'abstracted' to AbstractGeoContext and then aggregated by GeoContexts properties.", + "title": "AbstractGeoFieldContext", + "type": "object", + "properties": { + "FieldID": { + "pattern": "^[\\w\\-\\.]+:master-data\\-\\-Field:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Reference to Field.", + "x-osdu-relationship": [{ + "EntityType": "Field", + "GroupType": "master-data" + } + ], + "type": "string" + }, + "GeoTypeID": { + "const": "Field", + "type": "string", + "description": "The fixed type 'Field' for this AbstractGeoFieldContext." + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractGeoFieldContext.1.0.0.json" + }, + "osdu:wks:AbstractAliasNames:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractAliasNames:1.0.0", + "description": "A list of alternative names for an object. The preferred name is in a separate, scalar property. It may or may not be repeated in the alias list, though a best practice is to include it if the list is present, but to omit the list if there are no other names. Note that the abstract entity is an array so the $ref to it is a simple property reference.", + "x-osdu-review-status": "Accepted", + "title": "AbstractAliasNames", + "type": "object", + "properties": { + "AliasNameTypeID": { + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-AliasNameType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "A classification of alias names such as by role played or type of source, such as regulatory name, regulatory code, company code, international standard name, etc.", + "x-osdu-relationship": [{ + "EntityType": "AliasNameType", + "GroupType": "reference-data" + } + ], + "type": "string" + }, + "EffectiveDateTime": { + "format": "date-time", + "type": "string", + "description": "The date and time when an alias name becomes effective." + }, + "AliasName": { + "type": "string", + "description": "Alternative Name value of defined name type for an object." + }, + "TerminationDateTime": { + "format": "date-time", + "type": "string", + "description": "The data and time when an alias name is no longer in effect." + }, + "DefinitionOrganisationID": { + "pattern": "^[\\w\\-\\.]+:(reference-data\\-\\-StandardsOrganisation|master-data\\-\\-Organisation):[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The StandardsOrganisation (reference-data) or Organisation (master-data) that provided the name (the source).", + "x-osdu-relationship": [{ + "EntityType": "StandardsOrganisation", + "GroupType": "reference-data" + }, { + "EntityType": "Organisation", + "GroupType": "master-data" + } + ], + "type": "string" + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractAliasNames.1.0.0.json" + }, + "osdu:wks:AbstractGeoProspectContext:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractGeoProspectContext:1.0.0", + "description": "A single, typed Prospect entity reference, which is 'abstracted' to AbstractGeoContext and then aggregated by GeoContexts properties.", + "x-osdu-review-status": "Accepted", + "title": "AbstractGeoProspectContext", + "type": "object", + "properties": { + "ProspectID": { + "pattern": "^[\\w\\-\\.]+:master-data\\-\\-Prospect:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Reference to the prospect.", + "x-osdu-relationship": [{ + "EntityType": "Prospect", + "GroupType": "master-data" + } + ], + "type": "string" + }, + "GeoTypeID": { + "x-osdu-is-derived": { + "RelationshipPropertyName": "ProspectID", + "TargetPropertyName": "ProspectTypeID" + }, + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-ProspectType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The ProspectType reference of the Prospect (via ProspectID) for application convenience.", + "x-osdu-relationship": [{ + "EntityType": "ProspectType", + "GroupType": "reference-data" + } + ], + "type": "string" + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractGeoProspectContext.1.0.0.json" + }, + "osdu:wks:AbstractGeoBasinContext:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractGeoBasinContext:1.0.0", + "description": "A single, typed basin entity reference, which is 'abstracted' to AbstractGeoContext and then aggregated by GeoContexts properties.", + "x-osdu-review-status": "Accepted", + "title": "AbstractGeoBasinContext", + "type": "object", + "properties": { + "BasinID": { + "pattern": "^[\\w\\-\\.]+:master-data\\-\\-Basin:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Reference to Basin.", + "x-osdu-relationship": [{ + "EntityType": "Basin", + "GroupType": "master-data" + } + ], + "type": "string" + }, + "GeoTypeID": { + "x-osdu-is-derived": { + "RelationshipPropertyName": "BasinID", + "TargetPropertyName": "BasinTypeID" + }, + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-BasinType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The BasinType reference of the Basin (via BasinID) for application convenience.", + "x-osdu-relationship": [{ + "EntityType": "BasinType", + "GroupType": "reference-data" + } + ], + "type": "string" + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractGeoBasinContext.1.0.0.json" + }, + "osdu:wks:AbstractSpatialLocation:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractSpatialLocation:1.0.0", + "description": "A geographic object which can be described by a set of points.", + "title": "AbstractSpatialLocation", + "type": "object", + "properties": { + "AsIngestedCoordinates": { + "description": "The original or 'as ingested' coordinates (Point, MultiPoint, LineString, MultiLineString, Polygon or MultiPolygon). The name 'AsIngestedCoordinates' was chosen to contrast it to 'OriginalCoordinates', which carries the uncertainty whether any coordinate operations took place before ingestion. In cases where the original CRS is different from the as-ingested CRS, the AppliedOperations can also contain the list of operations applied to the coordinate prior to ingestion. The data structure is similar to GeoJSON FeatureCollection, however in a CRS context explicitly defined within the AbstractAnyCrsFeatureCollection. The coordinate sequence follows GeoJSON standard, i.e. 'eastward/longitude', 'northward/latitude' {, 'upward/height' unless overridden by an explicit direction in the AsIngestedCoordinates.VerticalCoordinateReferenceSystemID}.", + "x-osdu-frame-of-reference": "CRS:", + "title": "As Ingested Coordinates", + "$ref": "#/definitions/osdu:wks:AbstractAnyCrsFeatureCollection:1.0.0" + }, + "SpatialParameterTypeID": { + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-SpatialParameterType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "A type of spatial representation of an object, often general (e.g. an Outline, which could be applied to Field, Reservoir, Facility, etc.) or sometimes specific (e.g. Onshore Outline, State Offshore Outline, Federal Offshore Outline, 3 spatial representations that may be used by Countries).", + "x-osdu-relationship": [{ + "EntityType": "SpatialParameterType", + "GroupType": "reference-data" + } + ], + "type": "string" + }, + "QuantitativeAccuracyBandID": { + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-QuantitativeAccuracyBand:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "An approximate quantitative assessment of the quality of a location (accurate to > 500 m (i.e. not very accurate)), to < 1 m, etc.", + "x-osdu-relationship": [{ + "EntityType": "QuantitativeAccuracyBand", + "GroupType": "reference-data" + } + ], + "type": "string" + }, + "CoordinateQualityCheckRemarks": { + "type": "array", + "description": "Freetext remarks on Quality Check.", + "items": { + "type": "string" + } + }, + "AppliedOperations": { + "description": "The audit trail of operations applied to the coordinates from the original state to the current state. The list may contain operations applied prior to ingestion as well as the operations applied to produce the Wgs84Coordinates. The text elements refer to ESRI style CRS and Transformation names, which may have to be translated to EPSG standard names.", + "title": "Operations Applied", + "type": "array", + "items": { + "type": "string" + }, + "example": [ + "conversion from ED_1950_UTM_Zone_31N to GCS_European_1950; 1 points converted", + "transformation GCS_European_1950 to GCS_WGS_1984 using ED_1950_To_WGS_1984_24; 1 points successfully transformed" + ] + }, + "QualitativeSpatialAccuracyTypeID": { + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-QualitativeSpatialAccuracyType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "A qualitative description of the quality of a spatial location, e.g. unverifiable, not verified, basic validation.", + "x-osdu-relationship": [{ + "EntityType": "QualitativeSpatialAccuracyType", + "GroupType": "reference-data" + } + ], + "type": "string" + }, + "CoordinateQualityCheckPerformedBy": { + "type": "string", + "description": "The user who performed the Quality Check." + }, + "SpatialLocationCoordinatesDate": { + "format": "date-time", + "description": "Date when coordinates were measured or retrieved.", + "x-osdu-frame-of-reference": "DateTime", + "type": "string" + }, + "CoordinateQualityCheckDateTime": { + "format": "date-time", + "description": "The date of the Quality Check.", + "x-osdu-frame-of-reference": "DateTime", + "type": "string" + }, + "Wgs84Coordinates": { + "title": "WGS 84 Coordinates", + "description": "The normalized coordinates (Point, MultiPoint, LineString, MultiLineString, Polygon or MultiPolygon) based on WGS 84 (EPSG:4326 for 2-dimensional coordinates, EPSG:4326 + EPSG:5714 (MSL) for 3-dimensional coordinates). This derived coordinate representation is intended for global discoverability only. The schema of this substructure is identical to the GeoJSON FeatureCollection https://geojson.org/schema/FeatureCollection.json. The coordinate sequence follows GeoJSON standard, i.e. longitude, latitude {, height}", + "$ref": "#/definitions/osdu:wks:AbstractFeatureCollection:1.0.0" + }, + "SpatialGeometryTypeID": { + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-SpatialGeometryType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Indicates the expected look of the SpatialParameterType, e.g. Point, MultiPoint, LineString, MultiLineString, Polygon, MultiPolygon. The value constrains the type of geometries in the GeoJSON Wgs84Coordinates and AsIngestedCoordinates.", + "x-osdu-relationship": [{ + "EntityType": "SpatialGeometryType", + "GroupType": "reference-data" + } + ], + "type": "string" + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractSpatialLocation.1.0.0.json" + }, + "osdu:wks:AbstractLegalTags:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractLegalTags:1.0.0", + "description": "Legal meta data like legal tags, relevant other countries, legal status. This structure is included by the SystemProperties \"legal\", which is part of all OSDU records. Not extensible.", + "additionalProperties": false, + "title": "Legal Meta Data", + "type": "object", + "properties": { + "legaltags": { + "description": "The list of legal tags, which resolve to legal properties (like country of origin, export classification code, etc.) and rules with the help of the Compliance Service.", + "title": "Legal Tags", + "type": "array", + "items": { + "type": "string" + } + }, + "otherRelevantDataCountries": { + "description": "The list of other relevant data countries as an array of two-letter country codes, see https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2.", + "title": "Other Relevant Data Countries", + "type": "array", + "items": { + "pattern": "^[A-Z]{2}$", + "type": "string" + } + }, + "status": { + "pattern": "^(compliant|uncompliant)$", + "description": "The legal status. Set by the system after evaluation against the compliance rules associated with the \"legaltags\" using the Compliance Service.", + "title": "Legal Status", + "type": "string" + } + }, + "required": [ + "legaltags", + "otherRelevantDataCountries" + ], + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractLegalTags.1.0.0.json" + }, + "osdu:wks:AbstractMaster:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractMaster:1.0.0", + "description": "Properties shared with all master-data schema instances.", + "x-osdu-review-status": "Accepted", + "title": "Abstract Master", + "type": "object", + "properties": { + "NameAliases": { + "x-osdu-indexing": { + "type": "nested" + }, + "description": "Alternative names, including historical, by which this master data is/has been known (it should include all the identifiers).", + "type": "array", + "items": { + "$ref": "#/definitions/osdu:wks:AbstractAliasNames:1.0.0" + } + }, + "SpatialLocation": { + "description": "The spatial location information such as coordinates, CRS information (left empty when not appropriate).", + "$ref": "#/definitions/osdu:wks:AbstractSpatialLocation:1.0.0" + }, + "VersionCreationReason": { + "description": "This describes the reason that caused the creation of a new version of this master data.", + "type": "string" + }, + "TechnicalAssuranceTypeID": { + "x-osdu-relationship": [{ + "EntityType": "TechnicalAssuranceType", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-TechnicalAssuranceType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Describes a master-data record's overall suitability for general business consumption based on data quality. Clarifications: Since Certified is the highest classification of suitable quality, any further change or versioning of a Certified record should be carefully considered and justified. If a Technical Assurance value is not populated then one can assume the data has not been evaluated or its quality is unknown (=Unevaluated). Technical Assurance values are not intended to be used for the identification of a single \"preferred\" or \"definitive\" record by comparison with other records.", + "type": "string", + "title": "Technical Assurance Type ID", + "example": "namespace:reference-data--TechnicalAssuranceType:Certified:" + }, + "GeoContexts": { + "x-osdu-indexing": { + "type": "nested" + }, + "description": "List of geographic entities which provide context to the master data. This may include multiple types or multiple values of the same type.", + "type": "array", + "items": { + "$ref": "#/definitions/osdu:wks:AbstractGeoContext:1.0.0" + } + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractMaster.1.0.0.json" + }, + "osdu:wks:AbstractGeoPlayContext:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractGeoPlayContext:1.0.0", + "description": "A single, typed Play entity reference, which is 'abstracted' to AbstractGeoContext and then aggregated by GeoContexts properties.", + "x-osdu-review-status": "Accepted", + "title": "AbstractGeoPlayContext", + "type": "object", + "properties": { + "PlayID": { + "pattern": "^[\\w\\-\\.]+:master-data\\-\\-Play:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Reference to the play.", + "x-osdu-relationship": [{ + "EntityType": "Play", + "GroupType": "master-data" + } + ], + "type": "string" + }, + "GeoTypeID": { + "x-osdu-is-derived": { + "RelationshipPropertyName": "PlayID", + "TargetPropertyName": "PlayTypeID" + }, + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-PlayType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The PlayType reference of the Play (via PlayID) for application convenience.", + "x-osdu-relationship": [{ + "EntityType": "PlayType", + "GroupType": "reference-data" + } + ], + "type": "string" + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractGeoPlayContext.1.0.0.json" + }, + "osdu:wks:AbstractGeoPoliticalContext:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractGeoPoliticalContext:1.0.0", + "description": "A single, typed geo-political entity reference, which is 'abstracted' to AbstractGeoContext and then aggregated by GeoContexts properties.", + "x-osdu-review-status": "Accepted", + "title": "AbstractGeoPoliticalContext", + "type": "object", + "properties": { + "GeoPoliticalEntityID": { + "pattern": "^[\\w\\-\\.]+:master-data\\-\\-GeoPoliticalEntity:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Reference to GeoPoliticalEntity.", + "x-osdu-relationship": [{ + "EntityType": "GeoPoliticalEntity", + "GroupType": "master-data" + } + ], + "type": "string" + }, + "GeoTypeID": { + "x-osdu-is-derived": { + "RelationshipPropertyName": "GeoPoliticalEntityID", + "TargetPropertyName": "GeoPoliticalEntityTypeID" + }, + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-GeoPoliticalEntityType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "The GeoPoliticalEntityType reference of the GeoPoliticalEntity (via GeoPoliticalEntityID) for application convenience.", + "x-osdu-relationship": [{ + "EntityType": "GeoPoliticalEntityType", + "GroupType": "reference-data" + } + ], + "type": "string" + } + }, + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractGeoPoliticalContext.1.0.0.json" + }, + "osdu:wks:AbstractAccessControlList:1.0.0": { + "x-osdu-inheriting-from-kind": [], + "x-osdu-license": "Copyright 2022, The Open Group \\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.", + "$schema": "http://json-schema.org/draft-07/schema#", + "x-osdu-schema-source": "osdu:wks:AbstractAccessControlList:1.0.0", + "description": "The access control tags associated with this entity. This structure is included by the SystemProperties \"acl\", which is part of all OSDU records. Not extensible.", + "additionalProperties": false, + "title": "Access Control List", + "type": "object", + "properties": { + "viewers": { + "description": "The list of viewers to which this data record is accessible/visible/discoverable formatted as an email (core.common.model.storage.validation.ValidationDoc.EMAIL_REGEX).", + "title": "List of Viewers", + "type": "array", + "items": { + "pattern": "^[a-zA-Z0-9_+&*-]+(?:\\.[a-zA-Z0-9_+&*-]+)*@(?:[a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,7}$", + "type": "string" + } + }, + "owners": { + "description": "The list of owners of this data record formatted as an email (core.common.model.storage.validation.ValidationDoc.EMAIL_REGEX).", + "title": "List of Owners", + "type": "array", + "items": { + "pattern": "^[a-zA-Z0-9_+&*-]+(?:\\.[a-zA-Z0-9_+&*-]+)*@(?:[a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,7}$", + "type": "string" + } + } + }, + "required": [ + "owners", + "viewers" + ], + "$id": "https://schema.osdu.opengroup.org/json/abstract/AbstractAccessControlList.1.0.0.json" + } + }, + "properties": { + "ancestry": { + "description": "The links to data, which constitute the inputs, from which this record instance is derived.", + "title": "Ancestry", + "$ref": "#/definitions/osdu:wks:AbstractLegalParentList:1.0.0" + }, + "data": { + "allOf": [{ + "$ref": "#/definitions/osdu:wks:AbstractCommonResources:1.0.0" + }, { + "$ref": "#/definitions/osdu:wks:AbstractMaster:1.0.0" + }, { + "$ref": "#/definitions/osdu:wks:AbstractProject:1.0.0" + }, { + "type": "object", + "title": "IndividualProperties", + "properties": { + "SourceArrayCount": { + "description": "Number of energy sources", + "type": "integer" + }, + "ShootingAzimuthAngle": { + "description": "Orientation of plane between source and receivers.", + "x-osdu-frame-of-reference": "UOM:plane angle", + "type": "number" + }, + "MaxOffsetDistance": { + "description": "Horizontal distance between source and last receiver", + "x-osdu-frame-of-reference": "UOM:length", + "type": "number" + }, + "ShotpointIncrementDistance": { + "description": "Horizontal distance between shotpoint locations", + "x-osdu-frame-of-reference": "UOM:length", + "type": "number" + }, + "CableCount": { + "description": "Number of receiver arrays (lines)", + "type": "integer" + }, + "RecordLength": { + "description": "Length of record at time of acquisition", + "x-osdu-frame-of-reference": "UOM:time", + "type": "number" + }, + "CableLength": { + "description": "Total length of receiver array", + "x-osdu-frame-of-reference": "UOM:length", + "type": "number" + }, + "FoldCount": { + "description": "The number of times a point in the subsurface is sampled. It measures of the redundancy of common midpoint seismic data", + "type": "integer" + }, + "OperatingEnvironmentID": { + "x-osdu-relationship": [{ + "EntityType": "OperatingEnvironment", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-OperatingEnvironment:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Identifies the setting of acquisition (land, marine, transition zone).", + "type": "string" + }, + "SourceArraySeparationDistance": { + "description": "Distance between energy Sources", + "x-osdu-frame-of-reference": "UOM:length", + "type": "number" + }, + "SeismicGeometryTypeID": { + "x-osdu-relationship": [{ + "EntityType": "SeismicGeometryType", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-SeismicGeometryType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Reference to the standard values for the general layout of the acquisition. This is an hierarchical value. The top value is like 2D, 3D, 4D, Borehole, Passive. The second value is like NATS, WATS, Brick, Crosswell. Nodes are separated by forward slash.", + "type": "string" + }, + "CableSpacingDistance": { + "description": "Horizontal distance between receiver arrays", + "x-osdu-frame-of-reference": "UOM:length", + "type": "number" + }, + "AreaCalculated": { + "description": "The calculated are covered by the survey. This value is calculated during the loading of the survey.", + "x-osdu-frame-of-reference": "UOM:area", + "type": "number" + }, + "AreaNominal": { + "description": "The nominal area covered by the survey. This value is usually entered by the end user.", + "x-osdu-frame-of-reference": "UOM:area", + "type": "number" + }, + "SampleInterval": { + "description": "Vertical sampling interval of data at time of acquisition", + "x-osdu-frame-of-reference": "UOM:time", + "type": "number" + }, + "EnergySourceTypeID": { + "x-osdu-relationship": [{ + "EntityType": "SeismicEnergySourceType", + "GroupType": "reference-data" + } + ], + "pattern": "^[\\w\\-\\.]+:reference-data\\-\\-SeismicEnergySourceType:[\\w\\-\\.\\:\\%]+:[0-9]*$", + "description": "Seismic Source type. E.g.: Airgun, Vibroseis, Dynamite,Watergun", + "type": "string" + }, + "VesselNames": { + "description": "List of names of the seismic acquisition (source and streamer) vessels used (marine environment only).", + "type": "array", + "items": { + "type": "string" + } + }, + "MinOffsetDistance": { + "description": "Horizontal distance between source and first receiver", + "x-osdu-frame-of-reference": "UOM:length", + "type": "number" + } + } + }, { + "type": "object", + "title": "ExtensionProperties", + "properties": { + "ExtensionProperties": { + "type": "object" + } + } + } + ] + }, + "kind": { + "pattern": "^[\\w\\-\\.]+:[\\w\\-\\.]+:[\\w\\-\\.]+:[0-9]+.[0-9]+.[0-9]+$", + "description": "The schema identification for the OSDU resource object following the pattern {Namespace}:{Source}:{Type}:{VersionMajor}.{VersionMinor}.{VersionPatch}. The versioning scheme follows the semantic versioning, https://semver.org/.", + "title": "Entity Kind", + "type": "string", + "example": "osdu:wks:master-data--SeismicAcquisitionSurvey:1.0.0" + }, + "acl": { + "description": "The access control tags associated with this entity.", + "title": "Access Control List", + "$ref": "#/definitions/osdu:wks:AbstractAccessControlList:1.0.0" + }, + "version": { + "format": "int64", + "description": "The version number of this OSDU resource; set by the framework.", + "title": "Version Number", + "type": "integer", + "example": 1562066009929332 + }, + "tags": { + "description": "A generic dictionary of string keys mapping to string value. Only strings are permitted as keys and values.", + "additionalProperties": { + "type": "string" + }, + "title": "Tag Dictionary", + "type": "object", + "example": { + "NameOfKey": "String value" + } + }, + "modifyUser": { + "description": "The user reference, which created this version of this resource object. Set by the System.", + "title": "Resource Object Version Creation User Reference", + "type": "string", + "example": "some-user@some-company-cloud.com" + }, + "modifyTime": { + "format": "date-time", + "description": "Timestamp of the time at which this version of the OSDU resource object was created. Set by the System. The value is a combined date-time string in ISO-8601 given in UTC.", + "title": "Resource Object Version Creation DateTime", + "type": "string", + "example": "2020-12-16T11:52:24.477Z" + }, + "createTime": { + "format": "date-time", + "description": "Timestamp of the time at which initial version of this OSDU resource object was created. Set by the System. The value is a combined date-time string in ISO-8601 given in UTC.", + "title": "Resource Object Creation DateTime", + "type": "string", + "example": "2020-12-16T11:46:20.163Z" + }, + "meta": { + "description": "The Frame of Reference meta data section linking the named properties to self-contained definitions.", + "title": "Frame of Reference Meta Data", + "type": "array", + "items": { + "$ref": "#/definitions/osdu:wks:AbstractMetaItem:1.0.0" + } + }, + "legal": { + "description": "The entity's legal tags and compliance status. The actual contents associated with the legal tags is managed by the Compliance Service.", + "title": "Legal Tags", + "$ref": "#/definitions/osdu:wks:AbstractLegalTags:1.0.0" + }, + "createUser": { + "description": "The user reference, which created the first version of this resource object. Set by the System.", + "title": "Resource Object Creation User Reference", + "type": "string", + "example": "some-user@some-company-cloud.com" + }, + "id": { + "pattern": "^[\\w\\-\\.]+:master-data\\-\\-SeismicAcquisitionSurvey:[\\w\\-\\.\\:\\%]+$", + "description": "Previously called ResourceID or SRN which identifies this OSDU resource object without version.", + "title": "Entity ID", + "type": "string", + "example": "namespace:master-data--SeismicAcquisitionSurvey:35218168-41d4-5e7a-a6d0-958ae8069385" + } + }, + "$id": "https://schema.osdu.opengroup.org/json/master-data/SeismicAcquisitionSurvey.1.0.0.json" + } +} diff --git a/testing/indexer-test-gcp/pom.xml b/testing/indexer-test-gcp/pom.xml index b5060966f8b16f4dc690a4833ac5888dd074ff87..4eb60ee4e9217f851fafc1dffb8517ed322a3435 100644 --- a/testing/indexer-test-gcp/pom.xml +++ b/testing/indexer-test-gcp/pom.xml @@ -64,7 +64,7 @@ <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> - <version>2.8.5</version> + <version>2.9.1</version> <scope>compile</scope> </dependency> <dependency> @@ -116,4 +116,4 @@ </dependency> </dependencies> -</project> \ No newline at end of file +</project> diff --git a/testing/indexer-test-ibm/pom.xml b/testing/indexer-test-ibm/pom.xml index c9620ccefeb0f83516ae6430ad4ffd71269dc4d4..efa7099b9499f424bd408658ab210edeffd377a5 100644 --- a/testing/indexer-test-ibm/pom.xml +++ b/testing/indexer-test-ibm/pom.xml @@ -77,7 +77,7 @@ <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> - <version>2.8.5</version> + <version>2.9.1</version> <scope>compile</scope> </dependency> <dependency> diff --git a/testing/pom.xml b/testing/pom.xml index d0a61e1536e2edffc30e7d72e7f67802036ac9fd..fd1d519873d389e8049ae99c664da60cb699ee81 100644 --- a/testing/pom.xml +++ b/testing/pom.xml @@ -21,7 +21,7 @@ <version>0.18.0-SNAPSHOT</version> <description>Indexer Service Integration Test Root Project</description> <properties> - <spring.version>5.1.19.RELEASE</spring.version> + <spring.version>5.3.23</spring.version> </properties> <packaging>pom</packaging>