diff --git a/.env b/.env
new file mode 100644
index 0000000..21f2b87
--- /dev/null
+++ b/.env
@@ -0,0 +1 @@
+MOCK_QUERIES=true
diff --git a/package.json b/package.json
index 2ea3d8a..5f80257 100644
--- a/package.json
+++ b/package.json
@@ -20,12 +20,14 @@
"d3": "^7.9.0",
"jotai": "^2.10.3",
"maplibre-gl": "^4.7.1",
+ "msw": "^2.7.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"react-map-gl": "^7.1.7",
- "react-markdown": "^9.0.1"
+ "react-markdown": "^9.0.1",
+ "uuid": "^11.0.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
@@ -38,5 +40,10 @@
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"vite": "^6.0.1"
+ },
+ "msw": {
+ "workerDirectory": [
+ "public"
+ ]
}
}
diff --git a/public/mockServiceWorker.js b/public/mockServiceWorker.js
new file mode 100644
index 0000000..ec47a9a
--- /dev/null
+++ b/public/mockServiceWorker.js
@@ -0,0 +1,307 @@
+/* eslint-disable */
+/* tslint:disable */
+
+/**
+ * Mock Service Worker.
+ * @see https://github.com/mswjs/msw
+ * - Please do NOT modify this file.
+ * - Please do NOT serve this file on production.
+ */
+
+const PACKAGE_VERSION = '2.7.0'
+const INTEGRITY_CHECKSUM = '00729d72e3b82faf54ca8b9621dbb96f'
+const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
+const activeClientIds = new Set()
+
+self.addEventListener('install', function () {
+ self.skipWaiting()
+})
+
+self.addEventListener('activate', function (event) {
+ event.waitUntil(self.clients.claim())
+})
+
+self.addEventListener('message', async function (event) {
+ const clientId = event.source.id
+
+ if (!clientId || !self.clients) {
+ return
+ }
+
+ const client = await self.clients.get(clientId)
+
+ if (!client) {
+ return
+ }
+
+ const allClients = await self.clients.matchAll({
+ type: 'window',
+ })
+
+ switch (event.data) {
+ case 'KEEPALIVE_REQUEST': {
+ sendToClient(client, {
+ type: 'KEEPALIVE_RESPONSE',
+ })
+ break
+ }
+
+ case 'INTEGRITY_CHECK_REQUEST': {
+ sendToClient(client, {
+ type: 'INTEGRITY_CHECK_RESPONSE',
+ payload: {
+ packageVersion: PACKAGE_VERSION,
+ checksum: INTEGRITY_CHECKSUM,
+ },
+ })
+ break
+ }
+
+ case 'MOCK_ACTIVATE': {
+ activeClientIds.add(clientId)
+
+ sendToClient(client, {
+ type: 'MOCKING_ENABLED',
+ payload: {
+ client: {
+ id: client.id,
+ frameType: client.frameType,
+ },
+ },
+ })
+ break
+ }
+
+ case 'MOCK_DEACTIVATE': {
+ activeClientIds.delete(clientId)
+ break
+ }
+
+ case 'CLIENT_CLOSED': {
+ activeClientIds.delete(clientId)
+
+ const remainingClients = allClients.filter((client) => {
+ return client.id !== clientId
+ })
+
+ // Unregister itself when there are no more clients
+ if (remainingClients.length === 0) {
+ self.registration.unregister()
+ }
+
+ break
+ }
+ }
+})
+
+self.addEventListener('fetch', function (event) {
+ const { request } = event
+
+ // Bypass navigation requests.
+ if (request.mode === 'navigate') {
+ return
+ }
+
+ // Opening the DevTools triggers the "only-if-cached" request
+ // that cannot be handled by the worker. Bypass such requests.
+ if (request.cache === 'only-if-cached' && request.mode !== 'same-origin') {
+ return
+ }
+
+ // Bypass all requests when there are no active clients.
+ // Prevents the self-unregistered worked from handling requests
+ // after it's been deleted (still remains active until the next reload).
+ if (activeClientIds.size === 0) {
+ return
+ }
+
+ // Generate unique request ID.
+ const requestId = crypto.randomUUID()
+ event.respondWith(handleRequest(event, requestId))
+})
+
+async function handleRequest(event, requestId) {
+ const client = await resolveMainClient(event)
+ const response = await getResponse(event, client, requestId)
+
+ // Send back the response clone for the "response:*" life-cycle events.
+ // Ensure MSW is active and ready to handle the message, otherwise
+ // this message will pend indefinitely.
+ if (client && activeClientIds.has(client.id)) {
+ ;(async function () {
+ const responseClone = response.clone()
+
+ sendToClient(
+ client,
+ {
+ type: 'RESPONSE',
+ payload: {
+ requestId,
+ isMockedResponse: IS_MOCKED_RESPONSE in response,
+ type: responseClone.type,
+ status: responseClone.status,
+ statusText: responseClone.statusText,
+ body: responseClone.body,
+ headers: Object.fromEntries(responseClone.headers.entries()),
+ },
+ },
+ [responseClone.body],
+ )
+ })()
+ }
+
+ return response
+}
+
+// Resolve the main client for the given event.
+// Client that issues a request doesn't necessarily equal the client
+// that registered the worker. It's with the latter the worker should
+// communicate with during the response resolving phase.
+async function resolveMainClient(event) {
+ const client = await self.clients.get(event.clientId)
+
+ if (activeClientIds.has(event.clientId)) {
+ return client
+ }
+
+ if (client?.frameType === 'top-level') {
+ return client
+ }
+
+ const allClients = await self.clients.matchAll({
+ type: 'window',
+ })
+
+ return allClients
+ .filter((client) => {
+ // Get only those clients that are currently visible.
+ return client.visibilityState === 'visible'
+ })
+ .find((client) => {
+ // Find the client ID that's recorded in the
+ // set of clients that have registered the worker.
+ return activeClientIds.has(client.id)
+ })
+}
+
+async function getResponse(event, client, requestId) {
+ const { request } = event
+
+ // Clone the request because it might've been already used
+ // (i.e. its body has been read and sent to the client).
+ const requestClone = request.clone()
+
+ function passthrough() {
+ // Cast the request headers to a new Headers instance
+ // so the headers can be manipulated with.
+ const headers = new Headers(requestClone.headers)
+
+ // Remove the "accept" header value that marked this request as passthrough.
+ // This prevents request alteration and also keeps it compliant with the
+ // user-defined CORS policies.
+ const acceptHeader = headers.get('accept')
+ if (acceptHeader) {
+ const values = acceptHeader.split(',').map((value) => value.trim())
+ const filteredValues = values.filter(
+ (value) => value !== 'msw/passthrough',
+ )
+
+ if (filteredValues.length > 0) {
+ headers.set('accept', filteredValues.join(', '))
+ } else {
+ headers.delete('accept')
+ }
+ }
+
+ return fetch(requestClone, { headers })
+ }
+
+ // Bypass mocking when the client is not active.
+ if (!client) {
+ return passthrough()
+ }
+
+ // Bypass initial page load requests (i.e. static assets).
+ // The absence of the immediate/parent client in the map of the active clients
+ // means that MSW hasn't dispatched the "MOCK_ACTIVATE" event yet
+ // and is not ready to handle requests.
+ if (!activeClientIds.has(client.id)) {
+ return passthrough()
+ }
+
+ // Notify the client that a request has been intercepted.
+ const requestBuffer = await request.arrayBuffer()
+ const clientMessage = await sendToClient(
+ client,
+ {
+ type: 'REQUEST',
+ payload: {
+ id: requestId,
+ url: request.url,
+ mode: request.mode,
+ method: request.method,
+ headers: Object.fromEntries(request.headers.entries()),
+ cache: request.cache,
+ credentials: request.credentials,
+ destination: request.destination,
+ integrity: request.integrity,
+ redirect: request.redirect,
+ referrer: request.referrer,
+ referrerPolicy: request.referrerPolicy,
+ body: requestBuffer,
+ keepalive: request.keepalive,
+ },
+ },
+ [requestBuffer],
+ )
+
+ switch (clientMessage.type) {
+ case 'MOCK_RESPONSE': {
+ return respondWithMock(clientMessage.data)
+ }
+
+ case 'PASSTHROUGH': {
+ return passthrough()
+ }
+ }
+
+ return passthrough()
+}
+
+function sendToClient(client, message, transferrables = []) {
+ return new Promise((resolve, reject) => {
+ const channel = new MessageChannel()
+
+ channel.port1.onmessage = (event) => {
+ if (event.data && event.data.error) {
+ return reject(event.data.error)
+ }
+
+ resolve(event.data)
+ }
+
+ client.postMessage(
+ message,
+ [channel.port2].concat(transferrables.filter(Boolean)),
+ )
+ })
+}
+
+async function respondWithMock(response) {
+ // Setting response status code to 0 is a no-op.
+ // However, when responding with a "Response.error()", the produced Response
+ // instance will have status code set to 0. Since it's not possible to create
+ // a Response instance with status code 0, handle that use-case separately.
+ if (response.status === 0) {
+ return Response.error()
+ }
+
+ const mockedResponse = new Response(response.body, response)
+
+ Reflect.defineProperty(mockedResponse, IS_MOCKED_RESPONSE, {
+ value: true,
+ enumerable: true,
+ })
+
+ return mockedResponse
+}
diff --git a/src/App.jsx b/src/App.jsx
index 86fe715..49b6587 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1,8 +1,12 @@
import { Box, Grid, Text } from "@chakra-ui/react";
+import { useAtomValue } from "jotai";
import Providers from "./Providers";
import { ChatInput, ChatOutput, Map } from "./components";
+import { chartDataAtom } from "./atoms";
+import BarChart from "./components/BarChart";
function App() {
+ const chartData = useAtomValue(chartDataAtom);
return (
-
-
-
+
+
+
+
+ {chartData && (
+
+
+
+ )}
+
diff --git a/src/atoms.js b/src/atoms.js
index d66d214..3d86173 100644
--- a/src/atoms.js
+++ b/src/atoms.js
@@ -1,7 +1,11 @@
import { atom } from "jotai";
+import { v4 as uuidv4 } from "uuid";
export const mapLayersAtom = atom([]);
export const chatHistoryAtom = atom([]);
+export const sessionIdAtom = atom(uuidv4());
+export const isLoadingAtom = atom(false);
+export const chartDataAtom = atom();
function makeInputMessage(query) {
return {
@@ -11,43 +15,69 @@ function makeInputMessage(query) {
};
}
-export const addPrompt = atom(null, (get, set, query) => {
- set(chatHistoryAtom, (prev => [...prev, makeInputMessage(query)]));
+export const addPrompt = atom(null, (get, set, promt) => {
+ const { queryType, query } = promt;
- fetch("https://api.zeno.ds.io/stream", {
+ if (queryType === "query") {
+ set(chatHistoryAtom, (prev => [...prev, makeInputMessage(query)]));
+ }
+
+ let queryUrl = "https://api.zeno.ds.io/stream";
+ if (import.meta.env.MOCK_QUERIES === "true") {
+ queryUrl = "/stream";
+ }
+
+ set(isLoadingAtom, true);
+ fetch(queryUrl, {
method: "POST",
headers:{"content-type": "application/json"},
- body: JSON.stringify({ query })
+ body: JSON.stringify({ query, query_type: queryType, thread_id: get(sessionIdAtom) })
}).then(async (response) => {
const utf8Decoder = new TextDecoder("utf-8");
const reader = response.body.getReader();
let { value: chunk, done: readerDone } = await reader.read();
chunk = chunk ? utf8Decoder.decode(chunk, { stream: true }) : "";
- let re = /\r\n|\n|\r/gm;
- let messages = "";
+ let buffer = ""; // Accumulate partial chunks
- for (;;) {
- messages += chunk;
+ while (!readerDone) {
+ buffer += chunk; // Append current chunk to buffer
- let result = re.exec(messages);
- if (result) {
- // if messages contains a line break, add the last message to the chat history
- const message = {
- ...JSON.parse(messages.substring(0, result.index)),
- timestamp: Date.now()
- };
- set(chatHistoryAtom, (prev => [...prev, message]));
- messages = messages.substring(result.index + 2);
- }
+ let lineBreakIndex;
+ while ((lineBreakIndex = buffer.indexOf("\n")) >= 0) {
+ const line = buffer.slice(0, lineBreakIndex).trim(); // Extract the line
+ buffer = buffer.slice(lineBreakIndex + 1); // Remove processed line
- if (readerDone) {
- break;
+ if (line) {
+ try {
+ const message = {
+ ...JSON.parse(line),
+ timestamp: Date.now()
+ };
+ set(chatHistoryAtom, (prev) => [...prev, message]);
+ } catch (err) {
+ console.error("Failed to parse line", line, err);
+ }
+ }
}
// Read next chunk
({ value: chunk, done: readerDone } = await reader.read());
chunk = chunk ? utf8Decoder.decode(chunk, { stream: true }) : "";
}
- });
+
+ // Handle any remaining data in the buffer
+ if (buffer.trim()) {
+ try {
+ const message = {
+ ...JSON.parse(buffer),
+ timestamp: Date.now()
+ };
+ set(chatHistoryAtom, (prev) => [...prev, message]);
+ } catch (err) {
+ console.error("Failed to parse final buffer", buffer, err);
+ }
+ }
+ })
+ .finally(() => set(isLoadingAtom, false));
});
diff --git a/src/components/BarChart.jsx b/src/components/BarChart.jsx
index 7990043..b6b35b4 100644
--- a/src/components/BarChart.jsx
+++ b/src/components/BarChart.jsx
@@ -14,8 +14,8 @@ const BarChart = ({ data }) => {
const tooltip = d3.select(tooltipRef.current);
const width = containerRef.current?.offsetWidth || 250;
- const height = 250;
- const margin = { top: 20, right: 20, bottom: 20, left: 50 };
+ const height = 230;
+ const margin = { top: 20, right: 20, bottom: 20, left: 60 };
const x = d3.scaleBand()
.domain(data.map(d => d.category))
@@ -32,14 +32,14 @@ const BarChart = ({ data }) => {
.attr("transform", `translate(0,${height - margin.bottom})`)
.call(d3.axisBottom(x))
.selectAll("text")
- .style("text-anchor", "end")
- .attr("transform", "rotate(-45)")
.style("font-size", "12px");
// Add y-axis
svg.append("g")
.attr("transform", `translate(${margin.left},0)`)
- .call(d3.axisLeft(y));
+ .call(d3.axisLeft(y))
+ .selectAll("text")
+ .style("font-size", "12px");
// Add bars
svg.append("g")
@@ -71,7 +71,7 @@ const BarChart = ({ data }) => {
{
if(e.keyCode === 13) {
e.preventDefault();
- submit(inputValue);
+ submit({ query: inputValue, queryType: "query" });
setInputValue("");
}
};
@@ -40,7 +40,7 @@ function ChatInput() {
colorPalette="blue"
type="button"
size="xs"
- onClick={() => submit(inputValue)}
+ onClick={() => submit({ query: inputValue, queryType: "query" })}
>
diff --git a/src/components/ChatOutput.jsx b/src/components/ChatOutput.jsx
index eae1943..4f006c8 100644
--- a/src/components/ChatOutput.jsx
+++ b/src/components/ChatOutput.jsx
@@ -2,11 +2,13 @@ import { useEffect, useRef } from "react";
import { Box } from "@chakra-ui/react";
import { useAtom } from "jotai";
-import { MessageIn, MessageTool, MessageAssistant, MessageDefault } from ".";
-import { chatHistoryAtom } from "../atoms";
+import { MessageIn, MessageTool, MessageAssistant, MessageDefault, HumanInput, Loading } from ".";
+import { chatHistoryAtom, isLoadingAtom } from "../atoms";
function ChatOutput() {
const [ chatHistory ] = useAtom(chatHistoryAtom);
+ const [ isLoading ] = useAtom(isLoadingAtom);
+ console.log(chatHistory);
const containerRef = useRef();
useEffect(() => {
@@ -36,14 +38,21 @@ function ChatOutput() {
switch (msg.type) {
case "in":
return
;
- case "tool":
- return
;
- case "assistant":
- return
;
+ case "tool_call":
+ if (!msg.content) {
+ // If no message, there's nothing to render
+ return null;
+ }
+ return
;
+ case "update":
+ return
;
+ case "human_input":
+ return
;
default:
return
;
}
})}
+ { isLoading &&
}
);
}
diff --git a/src/components/MessageOut/HumanInput.jsx b/src/components/MessageOut/HumanInput.jsx
new file mode 100644
index 0000000..350ed07
--- /dev/null
+++ b/src/components/MessageOut/HumanInput.jsx
@@ -0,0 +1,52 @@
+
+import T from "prop-types";
+import { Button, List } from "@chakra-ui/react";
+import { useSetAtom } from "jotai";
+import { addPrompt } from "../../atoms";
+import MessageOutWrapper from "./wrapper";
+
+/**
+ *
+ * Human Input component
+ * Takes options and presents them to the user
+ * Once an option is selected, create a POST to the server
+ * with the selected option
+ *
+ */
+function HumanInput({ message, options, artifact }) {
+ const submit = useSetAtom(addPrompt);
+
+ return (
+
+ {message}
+
+ {options.map((option, index) => {
+ const feature = artifact.features.find((f) => f.id === `${option}`);
+
+ return (
+
+
+
+ );
+ })}
+
+
+ );
+}
+
+HumanInput.propTypes = {
+ message: T.string.isRequired,
+ options: T.arrayOf(T.string || T.number).isRequired,
+ artifact: T.object.isRequired
+};
+
+export default HumanInput;
diff --git a/src/components/MessageOut/Loading.jsx b/src/components/MessageOut/Loading.jsx
new file mode 100644
index 0000000..b1ecac1
--- /dev/null
+++ b/src/components/MessageOut/Loading.jsx
@@ -0,0 +1,16 @@
+import "./loading.css";
+import MessageOutWrapper from "./wrapper";
+
+function Loading() {
+ return (
+
+
+
+ );
+}
+
+export default Loading;
diff --git a/src/components/MessageOut/MessageTool.jsx b/src/components/MessageOut/MessageTool.jsx
index adb066d..78102e2 100644
--- a/src/components/MessageOut/MessageTool.jsx
+++ b/src/components/MessageOut/MessageTool.jsx
@@ -1,19 +1,12 @@
import T from "prop-types";
-import { Box, Button } from "@chakra-ui/react";
+import { Button } from "@chakra-ui/react";
import MessageOutWrapper from "./wrapper";
-import MiniMap from "../MiniMap";
-import BarChart from "../BarChart";
import { useSetAtom } from "jotai";
-import { mapLayersAtom } from "../../atoms";
+import { mapLayersAtom, chartDataAtom } from "../../atoms";
function ContextLayer({message}) {
- return (
- <>
-
Context layer
-
Use context layer {message}
- >
- );
+ return (
Using context layer {message}
);
}
@@ -21,7 +14,7 @@ ContextLayer.propTypes = {
message: T.string.isRequired
};
-function LocationTool({message, artifact}) {
+function LocationTool({artifact}) {
/**
* LocationTool component
* message is found location
@@ -29,21 +22,35 @@ function LocationTool({message, artifact}) {
*/
const setMapLayers = useSetAtom(mapLayersAtom);
+
+ const numLocations = artifact ? artifact?.features.length : 0;
+
+ if (numLocations === 0) {
+ return
No locations found.
;
+ }
+
return (
<>
-
Location tool
-
Location found: {message}
-
Map
-
-
-
-
+
Found {numLocations} Locations:
+
+ {artifact?.features.map((f) => (
+ - {f.properties.name}
+ ))}
+
+
>
);
}
LocationTool.propTypes = {
- message: T.string.isRequired,
artifact: T.object
};
@@ -52,20 +59,33 @@ function DistAlertsTool({message, artifact}) {
// artifact is geojson object to render to a map
const setMapLayers = useSetAtom(mapLayersAtom);
+ const setChartData = useSetAtom(chartDataAtom);
+
+ const numDisturbances = artifact ? artifact?.features.length : 0;
+
+ if (numDisturbances === 0) {
+ return
No disturbances found in the region.
;
+ }
const json = JSON.parse(message);
const keys = Object.keys(json);
const data = Object.entries(json[keys[0]]).map(([category, value]) => ({ category, value }));
+
return (
<>
-
Dist alerts tool
-
Dist alerts
-
-
Map
-
-
-
-
+
Found {numDisturbances} disturbances in the region.
+
>
);
}
diff --git a/src/components/MessageOut/loading.css b/src/components/MessageOut/loading.css
new file mode 100644
index 0000000..a1c3a5d
--- /dev/null
+++ b/src/components/MessageOut/loading.css
@@ -0,0 +1,7 @@
+@keyframes blink { 50% { fill: transparent }}
+.dot {
+ animation: 1s blink infinite;
+ fill: grey;
+}
+.dot:nth-child(2) { animation-delay: 250ms }
+.dot:nth-child(3) { animation-delay: 500ms }
diff --git a/src/components/index.js b/src/components/index.js
index c31e52a..25c5050 100644
--- a/src/components/index.js
+++ b/src/components/index.js
@@ -5,7 +5,9 @@ import Map from "./Map";
import MessageIn from "./MessageIn";
import MessageTool from "./MessageOut/MessageTool";
import MessageAssistant from "./MessageOut/MessageAssistant";
+import HumanInput from "./MessageOut/HumanInput";
import MessageDefault from "./MessageOut/MessageDefault";
+import Loading from "./MessageOut/Loading";
export {
ChatInput,
@@ -15,5 +17,7 @@ export {
MessageIn,
MessageTool,
MessageAssistant,
- MessageDefault
+ MessageDefault,
+ HumanInput,
+ Loading
};
diff --git a/src/main.jsx b/src/main.jsx
index c0577bb..a01bf8f 100644
--- a/src/main.jsx
+++ b/src/main.jsx
@@ -3,8 +3,22 @@ import { createRoot } from "react-dom/client";
import App from "./App";
import "@fontsource/ibm-plex-sans/index.css";
-createRoot(document.getElementById("root")).render(
+const isMock = import.meta.env.MOCK_QUERIES === "true";
+
+async function deferRender() {
+ if (isMock) {
+ const { worker } = await import("./mocks/browser");
+ return worker.start();
+ } else {
+ return Promise.resolve();
+ }
+}
+
+deferRender().then(() => {
+ createRoot(document.getElementById("root")).render(
,
-);
+ );
+});
+
diff --git a/src/mocks/browser.js b/src/mocks/browser.js
new file mode 100644
index 0000000..ddcb45c
--- /dev/null
+++ b/src/mocks/browser.js
@@ -0,0 +1,4 @@
+import { setupWorker } from "msw/browser";
+import handlers from "./handlers";
+
+export const worker = setupWorker(...handlers);
diff --git a/src/mocks/handlers.js b/src/mocks/handlers.js
new file mode 100644
index 0000000..02bf550
--- /dev/null
+++ b/src/mocks/handlers.js
@@ -0,0 +1,36 @@
+import { http, HttpResponse } from "msw";
+import response1 from "./response_01.jsonl?raw";
+import response2 from "./response_02.jsonl?raw";
+
+function validLines(response) {
+ return response
+ .split("\n")
+ .map((line) => {
+ try {
+ JSON.parse(line);
+ return line;
+ } catch (err) {
+ // if the line is not valid JSON, ignore it
+ return err ? null : line;
+ }
+ })
+ .filter(Boolean)
+ .join("\r\n");
+}
+
+const handlers = [
+ http.post("/stream", async ({ request }) => {
+ const query = await request.json();
+
+ switch(query.query_type) {
+ case "query":
+ return HttpResponse.text(validLines(response1), { headers: { "Content-Type": "application/x-ndjson" } });
+ case "human_input":
+ return HttpResponse.text(validLines(response2), { headers: { "Content-Type": "application/x-ndjson" } });
+ default:
+ return HttpResponse.text("invalid query", { headers: { "Content-Type": "application/x-ndjson" } });
+ }
+ })
+];
+
+export default handlers;
diff --git a/src/mocks/response_01.jsonl b/src/mocks/response_01.jsonl
new file mode 100644
index 0000000..fc1a79f
--- /dev/null
+++ b/src/mocks/response_01.jsonl
@@ -0,0 +1,3 @@
+{"type": "tool_call", "tool_name": "context-layer-tool", "content": "WRI/SBTN/naturalLands/v1/2020", "artifact": null}
+{"type": "tool_call", "tool_name": "location-tool", "content": "[265085, 265067, 265087]", "artifact": {"type": "FeatureCollection", "features": [{"geometry": {"coordinates": [[[[-8.296710967999957, 40.919563293000124], [-8.30863761899991, 40.918823241000155], [-8.31846141699998, 40.92485809400006], [-8.318773268999848, 40.92707443300003], [-8.298451423999893, 40.93067169200003], [-8.296360968999977, 40.92555618400007], [-8.296710967999957, 40.919563293000124]]]], "type": "MultiPolygon"}, "id": "265085", "properties": {"GID_0": "PRT", "GID_1": "PRT.1_1", "GID_2": "PRT.1.4_1", "GID_3": "PRT.1.4.20_1", "GID_4": "", "GID_5": "", "name": "Arouca Aveiro V\u00e1rzea Portugal", "gadmid": "PRT.1.4.20_1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[[-8.178413391999868, 40.937515259000065], [-8.182741164999925, 40.94561767700009], [-8.181076048999898, 40.95109939600002], [-8.179388999999958, 40.95279312100013], [-8.173757553999963, 40.95209503300009], [-8.172289847999934, 40.95373916700004], [-8.174145698999894, 40.957031249000124], [-8.173304557999927, 40.96167373700018], [-8.175855636999927, 40.965217590000066], [-8.179938315999948, 40.965431213000045], [-8.178768157999912, 40.973880769000175], [-8.182345390999956, 40.97627639800004], [-8.188263892999942, 40.97629165700016], [-8.197156904999872, 40.98082733199999], [-8.193450926999958, 40.9827919010001], [-8.194241523999892, 40.98909378100018], [-8.205169677999947, 40.990276337000125], [-8.213391303999913, 40.993724823000036], [-8.198924064999972, 40.99600601300011], [-8.194317816999899, 40.998218537000014], [-8.178068160999942, 40.98820114200015], [-8.17621040399996, 40.989521027000194], [-8.170068740999909, 40.98860931400014], [-8.169544218999931, 40.98722839400011], [-8.164819716999943, 40.98607635500008], [-8.160899160999975, 40.98951339600018], [-8.142908095999815, 40.97855758800017], [-8.133410452999897, 40.97858428900014], [-8.12118720999996, 40.98763275100009], [-8.118439673999887, 40.997077943000136], [-8.110027312999932, 40.99980926600011], [-8.10571575299997, 41.003452302000085], [-8.103763580999896, 41.00210571400004], [-8.099057197999969, 41.01344299300007], [-8.09660720799991, 41.013427734000174], [-8.091073036999887, 41.00896835300006], [-8.090424538999969, 41.00062561000016], [-8.092061995999927, 40.99774551400009], [-8.08916187199992, 40.98755264200014], [-8.100221632999933, 40.98002243100012], [-8.101486206999937, 40.973518372000115], [-8.104888915999936, 40.97349548300008], [-8.116896628999939, 40.96493911700003], [-8.122220038999956, 40.95466613800011], [-8.131508826999948, 40.95060730000017], [-8.132025717999909, 40.94200134200008], [-8.130121230999976, 40.93486023000003], [-8.126996994999956, 40.93237304600012], [-8.128021239999953, 40.931144714000084], [-8.126991271999941, 40.928245545000095], [-8.137443541999914, 40.92705917400008], [-8.145201682999868, 40.92984008800016], [-8.1454286579999, 40.92559433100013], [-8.14791488599991, 40.925701141000104], [-8.147788046999892, 40.92811584400016], [-8.149656296999922, 40.92908477700013], [-8.15218353299997, 40.92748642000009], [-8.152127264999933, 40.924777985000105], [-8.153567314999975, 40.92471313500005], [-8.153893469999957, 40.928440094000166], [-8.156420708999974, 40.930335998000146], [-8.166552543999956, 40.93349838400013], [-8.17225456299991, 40.93263626100014], [-8.17503738399995, 40.93657302800017], [-8.178413391999868, 40.937515259000065]]]], "type": "MultiPolygon"}, "id": "265067", "properties": {"GID_0": "PRT", "GID_1": "PRT.1_1", "GID_2": "PRT.1.4_1", "GID_3": "PRT.1.4.2_1", "GID_4": "", "GID_5": "", "name": "Arouca Aveiro Alvarenga Portugal", "gadmid": "PRT.1.4.2_1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[[-8.671248999999932, 40.7181930000001], [-8.665694999999971, 40.71597300100018], [-8.670970999999952, 40.71236000099998], [-8.672639998999955, 40.71236000099998], [-8.67347099999995, 40.71458399900018], [-8.675694000999954, 40.71347000100019], [-8.67763999999994, 40.71486300100014], [-8.676249999999925, 40.71764000000013], [-8.671248999999932, 40.7181930000001]]], [[[-8.63190099999997, 40.72263700000008], [-8.629831000999957, 40.71965800300006], [-8.62953472099997, 40.7135581980001], [-8.624106999999924, 40.71311200000014], [-8.61935710899985, 40.708824158000084], [-8.614416988999949, 40.70843499300014], [-8.604571999999962, 40.70330400000006], [-8.601448102999882, 40.70090509000016], [-8.601396559999955, 40.698303223000096], [-8.59717655199995, 40.69297409100005], [-8.587916949999965, 40.692059211000014], [-8.584059999999965, 40.68948000000006], [-8.579405999999892, 40.677998], [-8.579228882999814, 40.673862159000066], [-8.574803999999972, 40.66957100000019], [-8.574202543999945, 40.66652680400017], [-8.569150999999977, 40.66494000000017], [-8.56959864299995, 40.66292965500003], [-8.575746535999883, 40.663421631000006], [-8.588783999999919, 40.660709000000054], [-8.59623358399989, 40.657893451000064], [-8.600378999999975, 40.653866000000164], [-8.6082209999999, 40.65274000000005], [-8.611190122999915, 40.66349410400005], [-8.618756999999846, 40.66836900000004], [-8.618138311999815, 40.67006683400018], [-8.623928999999919, 40.67454100000015], [-8.640898999999933, 40.67874499999999], [-8.641661999999883, 40.6801220000001], [-8.65404199999989, 40.679867000000115], [-8.655861999999956, 40.682907000000114], [-8.659022999999934, 40.682732000000044], [-8.659826999999893, 40.68534900000003], [-8.661893999999961, 40.68532600000009], [-8.664062999999942, 40.68984200000017], [-8.662082999999939, 40.690140000000156], [-8.663748999999939, 40.69180700000004], [-8.661526999999978, 40.69180700000004], [-8.660694999999976, 40.690140000000156], [-8.659028999999975, 40.69097100000016], [-8.657083999999884, 40.689026000000126], [-8.658750999999938, 40.692638000000045], [-8.654305999999963, 40.69402700000006], [-8.65985999999998, 40.69374800000003], [-8.661526999999978, 40.69541500000014], [-8.666250999999932, 40.69374800000003], [-8.668472999999949, 40.69902800000011], [-8.667360999999971, 40.702084000000184], [-8.669304999999952, 40.702084000000184], [-8.667638999999951, 40.70652799999999], [-8.67041699999993, 40.70513900000003], [-8.67208299999993, 40.71069299999999], [-8.665416999999934, 40.71513700000003], [-8.662638999999956, 40.71875000000017], [-8.650415999999893, 40.720974000000126], [-8.647083999999893, 40.71930700000007], [-8.644860999999935, 40.72013900000013], [-8.644860999999935, 40.72180600000007], [-8.64847199999997, 40.722916000000055], [-8.649305999999967, 40.72625000000005], [-8.644582999999898, 40.72569300000015], [-8.637082999999848, 40.720974000000126], [-8.63190099999997, 40.72263700000008]]]], "type": "MultiPolygon"}, "id": "265087", "properties": {"GID_0": "PRT", "GID_1": "PRT.1_1", "GID_2": "PRT.1.5_1", "GID_3": "PRT.1.5.2_1", "GID_4": "", "GID_5": "", "name": "Aveiro Cacia Portugal", "gadmid": "PRT.1.5.2_1"}, "type": "Feature"}]}}
+{"type": "human_input", "options": [265085, 265067, 265087], "artifact": {"type": "FeatureCollection", "features": [{"geometry": {"coordinates": [[[[-8.296710967999957, 40.919563293000124], [-8.30863761899991, 40.918823241000155], [-8.31846141699998, 40.92485809400006], [-8.318773268999848, 40.92707443300003], [-8.298451423999893, 40.93067169200003], [-8.296360968999977, 40.92555618400007], [-8.296710967999957, 40.919563293000124]]]], "type": "MultiPolygon"}, "id": "265085", "properties": {"GID_0": "PRT", "GID_1": "PRT.1_1", "GID_2": "PRT.1.4_1", "GID_3": "PRT.1.4.20_1", "GID_4": "", "GID_5": "", "name": "Arouca Aveiro V\u00e1rzea Portugal", "gadmid": "PRT.1.4.20_1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[[-8.178413391999868, 40.937515259000065], [-8.182741164999925, 40.94561767700009], [-8.181076048999898, 40.95109939600002], [-8.179388999999958, 40.95279312100013], [-8.173757553999963, 40.95209503300009], [-8.172289847999934, 40.95373916700004], [-8.174145698999894, 40.957031249000124], [-8.173304557999927, 40.96167373700018], [-8.175855636999927, 40.965217590000066], [-8.179938315999948, 40.965431213000045], [-8.178768157999912, 40.973880769000175], [-8.182345390999956, 40.97627639800004], [-8.188263892999942, 40.97629165700016], [-8.197156904999872, 40.98082733199999], [-8.193450926999958, 40.9827919010001], [-8.194241523999892, 40.98909378100018], [-8.205169677999947, 40.990276337000125], [-8.213391303999913, 40.993724823000036], [-8.198924064999972, 40.99600601300011], [-8.194317816999899, 40.998218537000014], [-8.178068160999942, 40.98820114200015], [-8.17621040399996, 40.989521027000194], [-8.170068740999909, 40.98860931400014], [-8.169544218999931, 40.98722839400011], [-8.164819716999943, 40.98607635500008], [-8.160899160999975, 40.98951339600018], [-8.142908095999815, 40.97855758800017], [-8.133410452999897, 40.97858428900014], [-8.12118720999996, 40.98763275100009], [-8.118439673999887, 40.997077943000136], [-8.110027312999932, 40.99980926600011], [-8.10571575299997, 41.003452302000085], [-8.103763580999896, 41.00210571400004], [-8.099057197999969, 41.01344299300007], [-8.09660720799991, 41.013427734000174], [-8.091073036999887, 41.00896835300006], [-8.090424538999969, 41.00062561000016], [-8.092061995999927, 40.99774551400009], [-8.08916187199992, 40.98755264200014], [-8.100221632999933, 40.98002243100012], [-8.101486206999937, 40.973518372000115], [-8.104888915999936, 40.97349548300008], [-8.116896628999939, 40.96493911700003], [-8.122220038999956, 40.95466613800011], [-8.131508826999948, 40.95060730000017], [-8.132025717999909, 40.94200134200008], [-8.130121230999976, 40.93486023000003], [-8.126996994999956, 40.93237304600012], [-8.128021239999953, 40.931144714000084], [-8.126991271999941, 40.928245545000095], [-8.137443541999914, 40.92705917400008], [-8.145201682999868, 40.92984008800016], [-8.1454286579999, 40.92559433100013], [-8.14791488599991, 40.925701141000104], [-8.147788046999892, 40.92811584400016], [-8.149656296999922, 40.92908477700013], [-8.15218353299997, 40.92748642000009], [-8.152127264999933, 40.924777985000105], [-8.153567314999975, 40.92471313500005], [-8.153893469999957, 40.928440094000166], [-8.156420708999974, 40.930335998000146], [-8.166552543999956, 40.93349838400013], [-8.17225456299991, 40.93263626100014], [-8.17503738399995, 40.93657302800017], [-8.178413391999868, 40.937515259000065]]]], "type": "MultiPolygon"}, "id": "265067", "properties": {"GID_0": "PRT", "GID_1": "PRT.1_1", "GID_2": "PRT.1.4_1", "GID_3": "PRT.1.4.2_1", "GID_4": "", "GID_5": "", "name": "Arouca Aveiro Alvarenga Portugal", "gadmid": "PRT.1.4.2_1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[[-8.671248999999932, 40.7181930000001], [-8.665694999999971, 40.71597300100018], [-8.670970999999952, 40.71236000099998], [-8.672639998999955, 40.71236000099998], [-8.67347099999995, 40.71458399900018], [-8.675694000999954, 40.71347000100019], [-8.67763999999994, 40.71486300100014], [-8.676249999999925, 40.71764000000013], [-8.671248999999932, 40.7181930000001]]], [[[-8.63190099999997, 40.72263700000008], [-8.629831000999957, 40.71965800300006], [-8.62953472099997, 40.7135581980001], [-8.624106999999924, 40.71311200000014], [-8.61935710899985, 40.708824158000084], [-8.614416988999949, 40.70843499300014], [-8.604571999999962, 40.70330400000006], [-8.601448102999882, 40.70090509000016], [-8.601396559999955, 40.698303223000096], [-8.59717655199995, 40.69297409100005], [-8.587916949999965, 40.692059211000014], [-8.584059999999965, 40.68948000000006], [-8.579405999999892, 40.677998], [-8.579228882999814, 40.673862159000066], [-8.574803999999972, 40.66957100000019], [-8.574202543999945, 40.66652680400017], [-8.569150999999977, 40.66494000000017], [-8.56959864299995, 40.66292965500003], [-8.575746535999883, 40.663421631000006], [-8.588783999999919, 40.660709000000054], [-8.59623358399989, 40.657893451000064], [-8.600378999999975, 40.653866000000164], [-8.6082209999999, 40.65274000000005], [-8.611190122999915, 40.66349410400005], [-8.618756999999846, 40.66836900000004], [-8.618138311999815, 40.67006683400018], [-8.623928999999919, 40.67454100000015], [-8.640898999999933, 40.67874499999999], [-8.641661999999883, 40.6801220000001], [-8.65404199999989, 40.679867000000115], [-8.655861999999956, 40.682907000000114], [-8.659022999999934, 40.682732000000044], [-8.659826999999893, 40.68534900000003], [-8.661893999999961, 40.68532600000009], [-8.664062999999942, 40.68984200000017], [-8.662082999999939, 40.690140000000156], [-8.663748999999939, 40.69180700000004], [-8.661526999999978, 40.69180700000004], [-8.660694999999976, 40.690140000000156], [-8.659028999999975, 40.69097100000016], [-8.657083999999884, 40.689026000000126], [-8.658750999999938, 40.692638000000045], [-8.654305999999963, 40.69402700000006], [-8.65985999999998, 40.69374800000003], [-8.661526999999978, 40.69541500000014], [-8.666250999999932, 40.69374800000003], [-8.668472999999949, 40.69902800000011], [-8.667360999999971, 40.702084000000184], [-8.669304999999952, 40.702084000000184], [-8.667638999999951, 40.70652799999999], [-8.67041699999993, 40.70513900000003], [-8.67208299999993, 40.71069299999999], [-8.665416999999934, 40.71513700000003], [-8.662638999999956, 40.71875000000017], [-8.650415999999893, 40.720974000000126], [-8.647083999999893, 40.71930700000007], [-8.644860999999935, 40.72013900000013], [-8.644860999999935, 40.72180600000007], [-8.64847199999997, 40.722916000000055], [-8.649305999999967, 40.72625000000005], [-8.644582999999898, 40.72569300000015], [-8.637082999999848, 40.720974000000126], [-8.63190099999997, 40.72263700000008]]]], "type": "MultiPolygon"}, "id": "265087", "properties": {"GID_0": "PRT", "GID_1": "PRT.1_1", "GID_2": "PRT.1.5_1", "GID_3": "PRT.1.5.2_1", "GID_4": "", "GID_5": "", "name": "Aveiro Cacia Portugal", "gadmid": "PRT.1.5.2_1"}, "type": "Feature"}]}, "question": "Pick the location you would like to query?"}
\ No newline at end of file
diff --git a/src/mocks/response_02.jsonl b/src/mocks/response_02.jsonl
new file mode 100644
index 0000000..e16775d
--- /dev/null
+++ b/src/mocks/response_02.jsonl
@@ -0,0 +1,2 @@
+{"type": "tool_call", "tool_name": "dist-alerts-tool", "content": "{\"PRT.1.4.20_1\": {\"natural forests\": 509, \"natural short vegetation\": 18, \"crop\": 76, \"built\": 1851, \"non-natural tree cover\": 92, \"non-natural short vegetation\": 15}, \"PRT.1.4.2_1\": {\"natural forests\": 26429, \"natural short vegetation\": 6942, \"crop\": 2551, \"built\": 9813, \"non-natural tree cover\": 10039, \"non-natural short vegetation\": 1274, \"non-natural bare\": 17}, \"PRT.1.5.2_1\": {\"natural forests\": 601, \"natural short vegetation\": 6302, \"natural water\": 5805, \"bare\": 333, \"wet natural forests\": 1912, \"wet natural short vegetation\": 8570, \"crop\": 6850, \"built\": 15600, \"non-natural tree cover\": 802, \"non-natural short vegetation\": 109, \"wet non-natural tree cover\": 515, \"wet non-natural short vegetation\": 377, \"non-natural bare\": 333}}", "artifact": {"type": "FeatureCollection", "columns": {"count": "Long<0, 4294967295>", "label": "Short<0, 255>", "system:index": "String"}, "features": [{"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.63978434374971, 40.694237614759594], [-8.638886028465606, 40.694237614759594], [-8.638886028465606, 40.69513593004372], [-8.63978434374971, 40.69513593004372], [-8.63978434374971, 40.694237614759594]]]}, "id": "+190646+38188", "properties": {"count": 1, "label": 10}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.638886028465606, 40.694237614759594], [-8.637987713181474, 40.694237614759594], [-8.637987713181474, 40.69513593004372], [-8.638886028465606, 40.69513593004372], [-8.638886028465606, 40.694237614759594]]]}, "id": "+190647+38188", "properties": {"count": 1, "label": 4}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.629004560340292, 40.67986457021368], [-8.62810624505616, 40.67986457021368], [-8.62810624505616, 40.680762885497806], [-8.629004560340292, 40.680762885497806], [-8.629004560340292, 40.67986457021368]]]}, "id": "+190658+38204", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.624512983919686, 40.70591571345315], [-8.623614668635582, 40.70591571345315], [-8.623614668635582, 40.70681402873727], [-8.624512983919686, 40.70681402873727], [-8.624512983919686, 40.70591571345315]]]}, "id": "+190663+38175", "properties": {"count": 1, "label": 10}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.623614668635582, 40.696932560611955], [-8.62271635335145, 40.696932560611955], [-8.62271635335145, 40.697830875896074], [-8.623614668635582, 40.697830875896074], [-8.623614668635582, 40.696932560611955]]]}, "id": "+190664+38185", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.623614668635582, 40.69513593004372], [-8.62271635335145, 40.69513593004372], [-8.62271635335145, 40.69603424532784], [-8.623614668635582, 40.69603424532784], [-8.623614668635582, 40.69513593004372]]]}, "id": "+190664+38187", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.62271635335145, 40.70681402873727], [-8.621818038067346, 40.70681402873727], [-8.621818038067346, 40.70771234402139], [-8.62271635335145, 40.70771234402139], [-8.62271635335145, 40.70681402873727]]]}, "id": "+190665+38174", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.62271635335145, 40.69962750646431], [-8.621818038067346, 40.69962750646431], [-8.621818038067346, 40.700525821748435], [-8.62271635335145, 40.700525821748435], [-8.62271635335145, 40.69962750646431]]]}, "id": "+190665+38182", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.62271635335145, 40.696932560611955], [-8.621818038067346, 40.696932560611955], [-8.621818038067346, 40.697830875896074], [-8.62271635335145, 40.697830875896074], [-8.62271635335145, 40.696932560611955]]]}, "id": "+190665+38185", "properties": {"count": 1, "label": 10}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.621818038067346, 40.696932560611955], [-8.620919722783214, 40.696932560611955], [-8.620919722783214, 40.697830875896074], [-8.621818038067346, 40.697830875896074], [-8.621818038067346, 40.696932560611955]]]}, "id": "+190666+38185", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.620021407499081, 40.68794940777076], [-8.619123092214977, 40.68794940777076], [-8.619123092214977, 40.68884772305488], [-8.620021407499081, 40.68884772305488], [-8.620021407499081, 40.68794940777076]]]}, "id": "+190668+38195", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.614631515794372, 40.67627130907721], [-8.613733200510268, 40.67627130907721], [-8.613733200510268, 40.677169624361326], [-8.614631515794372, 40.677169624361326], [-8.614631515794372, 40.67627130907721]]]}, "id": "+190674+38208", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.611936569942031, 40.69872919118019], [-8.611038254657899, 40.69872919118019], [-8.611038254657899, 40.69962750646431], [-8.611936569942031, 40.69962750646431], [-8.611936569942031, 40.69872919118019]]]}, "id": "+190677+38183", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.611936569942031, 40.689746038338996], [-8.611038254657899, 40.689746038338996], [-8.611038254657899, 40.69064435362312], [-8.611936569942031, 40.69064435362312], [-8.611936569942031, 40.689746038338996]]]}, "id": "+190677+38193", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.611936569942031, 40.68884772305488], [-8.611038254657899, 40.68884772305488], [-8.611038254657899, 40.689746038338996], [-8.611936569942031, 40.689746038338996], [-8.611936569942031, 40.68884772305488]]]}, "id": "+190677+38194", "properties": {"count": 1, "label": 8}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.610139939373767, 40.68884772305488], [-8.609241624089663, 40.68884772305488], [-8.609241624089663, 40.689746038338996], [-8.610139939373767, 40.689746038338996], [-8.610139939373767, 40.68884772305488]]]}, "id": "+190679+38194", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.610139939373767, 40.659203318678934], [-8.609241624089663, 40.659203318678934], [-8.609241624089663, 40.66010163396305], [-8.610139939373767, 40.66010163396305], [-8.610139939373767, 40.659203318678934]]]}, "id": "+190679+38227", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.609241624089663, 40.666389840951894], [-8.60834330880553, 40.666389840951894], [-8.60834330880553, 40.66728815623601], [-8.609241624089663, 40.66728815623601], [-8.609241624089663, 40.666389840951894]]]}, "id": "+190680+38219", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.60834330880553, 40.67088141737249], [-8.607444993521426, 40.67088141737249], [-8.607444993521426, 40.67177973265661], [-8.60834330880553, 40.67177973265661], [-8.60834330880553, 40.67088141737249]]]}, "id": "+190681+38214", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.609241624089663, 40.669983102088366], [-8.607444993521426, 40.669983102088366], [-8.607444993521426, 40.67088141737249], [-8.60834330880553, 40.67088141737249], [-8.60834330880553, 40.67177973265661], [-8.607444993521426, 40.67177973265661], [-8.607444993521426, 40.67267804794073], [-8.609241624089663, 40.67267804794073], [-8.609241624089663, 40.669983102088366]]]}, "id": "+190681+38215", "properties": {"count": 5, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.606546678237294, 40.66010163396305], [-8.60564836295319, 40.66010163396305], [-8.60564836295319, 40.66099994924718], [-8.606546678237294, 40.66099994924718], [-8.606546678237294, 40.66010163396305]]]}, "id": "+190683+38226", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.606546678237294, 40.6574066881107], [-8.60564836295319, 40.6574066881107], [-8.60564836295319, 40.658305003394815], [-8.606546678237294, 40.658305003394815], [-8.606546678237294, 40.6574066881107]]]}, "id": "+190683+38229", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.60564836295319, 40.67267804794073], [-8.604750047669057, 40.67267804794073], [-8.604750047669057, 40.673576363224846], [-8.60564836295319, 40.673576363224846], [-8.60564836295319, 40.67267804794073]]]}, "id": "+190684+38212", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.60564836295319, 40.658305003394815], [-8.604750047669057, 40.658305003394815], [-8.604750047669057, 40.659203318678934], [-8.60564836295319, 40.659203318678934], [-8.60564836295319, 40.658305003394815]]]}, "id": "+190684+38228", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.604750047669057, 40.66459321038365], [-8.603851732384953, 40.66459321038365], [-8.603851732384953, 40.66549152566777], [-8.604750047669057, 40.66549152566777], [-8.604750047669057, 40.66459321038365]]]}, "id": "+190685+38221", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.604750047669057, 40.66010163396305], [-8.603851732384953, 40.66010163396305], [-8.603851732384953, 40.662796579815414], [-8.602055101816717, 40.662796579815414], [-8.602055101816717, 40.66459321038365], [-8.60295341710082, 40.66459321038365], [-8.60295341710082, 40.66369489509953], [-8.603851732384953, 40.66369489509953], [-8.603851732384953, 40.662796579815414], [-8.60564836295319, 40.662796579815414], [-8.60564836295319, 40.661898264531295], [-8.604750047669057, 40.661898264531295], [-8.604750047669057, 40.66010163396305]]]}, "id": "+190685+38226", "properties": {"count": 7, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.604750047669057, 40.658305003394815], [-8.603851732384953, 40.658305003394815], [-8.603851732384953, 40.659203318678934], [-8.604750047669057, 40.659203318678934], [-8.604750047669057, 40.658305003394815]]]}, "id": "+190685+38228", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.603851732384953, 40.66369489509953], [-8.60295341710082, 40.66369489509953], [-8.60295341710082, 40.66459321038365], [-8.603851732384953, 40.66459321038365], [-8.603851732384953, 40.66369489509953]]]}, "id": "+190686+38222", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.603851732384953, 40.654711742258336], [-8.60295341710082, 40.654711742258336], [-8.60295341710082, 40.655610057542454], [-8.603851732384953, 40.655610057542454], [-8.603851732384953, 40.654711742258336]]]}, "id": "+190686+38232", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.60295341710082, 40.67537299379308], [-8.602055101816717, 40.67537299379308], [-8.602055101816717, 40.67627130907721], [-8.60295341710082, 40.67627130907721], [-8.60295341710082, 40.67537299379308]]]}, "id": "+190687+38209", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.60295341710082, 40.66010163396305], [-8.602055101816717, 40.66010163396305], [-8.602055101816717, 40.661898264531295], [-8.60295341710082, 40.661898264531295], [-8.60295341710082, 40.66010163396305]]]}, "id": "+190687+38226", "properties": {"count": 2, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.60295341710082, 40.65381342697422], [-8.602055101816717, 40.65381342697422], [-8.602055101816717, 40.654711742258336], [-8.60295341710082, 40.654711742258336], [-8.60295341710082, 40.65381342697422]]]}, "id": "+190687+38233", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.602055101816717, 40.66818647152013], [-8.601156786532584, 40.66818647152013], [-8.601156786532584, 40.66908478680425], [-8.602055101816717, 40.66908478680425], [-8.602055101816717, 40.669983102088366], [-8.600258471248452, 40.669983102088366], [-8.600258471248452, 40.67088141737249], [-8.602055101816717, 40.67088141737249], [-8.602055101816717, 40.669983102088366], [-8.60295341710082, 40.669983102088366], [-8.60295341710082, 40.66908478680425], [-8.602055101816717, 40.66908478680425], [-8.602055101816717, 40.66818647152013]]]}, "id": "+190688+38217", "properties": {"count": 4, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.602055101816717, 40.662796579815414], [-8.601156786532584, 40.662796579815414], [-8.601156786532584, 40.66459321038365], [-8.600258471248452, 40.66459321038365], [-8.600258471248452, 40.66549152566777], [-8.602055101816717, 40.66549152566777], [-8.602055101816717, 40.662796579815414]]]}, "id": "+190688+38223", "properties": {"count": 4, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.602055101816717, 40.66099994924718], [-8.601156786532584, 40.66099994924718], [-8.601156786532584, 40.661898264531295], [-8.602055101816717, 40.661898264531295], [-8.602055101816717, 40.66099994924718]]]}, "id": "+190688+38225", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.601156786532584, 40.666389840951894], [-8.600258471248452, 40.666389840951894], [-8.600258471248452, 40.66728815623601], [-8.601156786532584, 40.66728815623601], [-8.601156786532584, 40.666389840951894]]]}, "id": "+190689+38219", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.601156786532584, 40.66369489509953], [-8.600258471248452, 40.66369489509953], [-8.600258471248452, 40.66459321038365], [-8.601156786532584, 40.66459321038365], [-8.601156786532584, 40.66369489509953]]]}, "id": "+190689+38222", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.599360155964348, 40.66369489509953], [-8.598461840680216, 40.66369489509953], [-8.598461840680216, 40.66459321038365], [-8.599360155964348, 40.66459321038365], [-8.599360155964348, 40.66369489509953]]]}, "id": "+190691+38222", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.599360155964348, 40.658305003394815], [-8.598461840680216, 40.658305003394815], [-8.598461840680216, 40.659203318678934], [-8.599360155964348, 40.659203318678934], [-8.599360155964348, 40.658305003394815]]]}, "id": "+190691+38228", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.600258471248452, 40.66459321038365], [-8.597563525396112, 40.66459321038365], [-8.597563525396112, 40.66549152566777], [-8.600258471248452, 40.66549152566777], [-8.600258471248452, 40.66459321038365]]]}, "id": "+190692+38221", "properties": {"count": 3, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.599360155964348, 40.6574066881107], [-8.597563525396112, 40.6574066881107], [-8.597563525396112, 40.658305003394815], [-8.599360155964348, 40.658305003394815], [-8.599360155964348, 40.6574066881107]]]}, "id": "+190692+38229", "properties": {"count": 2, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.59666521011198, 40.67177973265661], [-8.595766894827875, 40.67177973265661], [-8.595766894827875, 40.67267804794073], [-8.59666521011198, 40.67267804794073], [-8.59666521011198, 40.67177973265661]]]}, "id": "+190694+38213", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.59666521011198, 40.661898264531295], [-8.595766894827875, 40.661898264531295], [-8.595766894827875, 40.66369489509953], [-8.597563525396112, 40.66369489509953], [-8.597563525396112, 40.662796579815414], [-8.59666521011198, 40.662796579815414], [-8.59666521011198, 40.661898264531295]]]}, "id": "+190694+38224", "properties": {"count": 3, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.59666521011198, 40.658305003394815], [-8.595766894827875, 40.658305003394815], [-8.595766894827875, 40.659203318678934], [-8.594868579543743, 40.659203318678934], [-8.594868579543743, 40.66099994924718], [-8.595766894827875, 40.66099994924718], [-8.595766894827875, 40.659203318678934], [-8.59666521011198, 40.659203318678934], [-8.59666521011198, 40.658305003394815]]]}, "id": "+190694+38228", "properties": {"count": 3, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.595766894827875, 40.67896625492956], [-8.594868579543743, 40.67896625492956], [-8.594868579543743, 40.67986457021368], [-8.595766894827875, 40.67986457021368], [-8.595766894827875, 40.67896625492956]]]}, "id": "+190695+38205", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.595766894827875, 40.661898264531295], [-8.594868579543743, 40.661898264531295], [-8.594868579543743, 40.662796579815414], [-8.593071948975506, 40.662796579815414], [-8.593071948975506, 40.66369489509953], [-8.593970264259639, 40.66369489509953], [-8.593970264259639, 40.66459321038365], [-8.595766894827875, 40.66459321038365], [-8.595766894827875, 40.66369489509953], [-8.594868579543743, 40.66369489509953], [-8.594868579543743, 40.662796579815414], [-8.595766894827875, 40.662796579815414], [-8.595766894827875, 40.661898264531295]]]}, "id": "+190695+38224", "properties": {"count": 5, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.595766894827875, 40.66099994924718], [-8.594868579543743, 40.66099994924718], [-8.594868579543743, 40.661898264531295], [-8.595766894827875, 40.661898264531295], [-8.595766894827875, 40.66099994924718]]]}, "id": "+190695+38225", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.594868579543743, 40.67627130907721], [-8.593970264259639, 40.67627130907721], [-8.593970264259639, 40.677169624361326], [-8.594868579543743, 40.677169624361326], [-8.594868579543743, 40.67627130907721]]]}, "id": "+190696+38208", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.594868579543743, 40.661898264531295], [-8.593970264259639, 40.661898264531295], [-8.593970264259639, 40.662796579815414], [-8.594868579543743, 40.662796579815414], [-8.594868579543743, 40.661898264531295]]]}, "id": "+190696+38224", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.593970264259639, 40.66369489509953], [-8.593071948975506, 40.66369489509953], [-8.593071948975506, 40.66459321038365], [-8.593970264259639, 40.66459321038365], [-8.593970264259639, 40.66369489509953]]]}, "id": "+190697+38222", "properties": {"count": 1, "label": 17}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.593071948975506, 40.674474678508965], [-8.592173633691402, 40.674474678508965], [-8.592173633691402, 40.67537299379308], [-8.593071948975506, 40.67537299379308], [-8.593071948975506, 40.674474678508965]]]}, "id": "+190698+38210", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.593071948975506, 40.662796579815414], [-8.59127531840727, 40.662796579815414], [-8.59127531840727, 40.66369489509953], [-8.593071948975506, 40.66369489509953], [-8.593071948975506, 40.662796579815414]]]}, "id": "+190699+38223", "properties": {"count": 2, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.590377003123137, 40.673576363224846], [-8.589478687839033, 40.673576363224846], [-8.589478687839033, 40.674474678508965], [-8.590377003123137, 40.674474678508965], [-8.590377003123137, 40.673576363224846]]]}, "id": "+190701+38211", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.590377003123137, 40.66099994924718], [-8.589478687839033, 40.66099994924718], [-8.589478687839033, 40.661898264531295], [-8.590377003123137, 40.661898264531295], [-8.590377003123137, 40.66099994924718]]]}, "id": "+190701+38225", "properties": {"count": 1, "label": 17}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.589478687839033, 40.66099994924718], [-8.587682057270797, 40.66099994924718], [-8.587682057270797, 40.662796579815414], [-8.589478687839033, 40.662796579815414], [-8.589478687839033, 40.66099994924718]]]}, "id": "+190703+38225", "properties": {"count": 4, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.587682057270797, 40.673576363224846], [-8.586783741986665, 40.673576363224846], [-8.586783741986665, 40.674474678508965], [-8.587682057270797, 40.674474678508965], [-8.587682057270797, 40.673576363224846]]]}, "id": "+190704+38211", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.586783741986665, 40.685254461918404], [-8.58588542670256, 40.685254461918404], [-8.58588542670256, 40.68615277720252], [-8.586783741986665, 40.68615277720252], [-8.586783741986665, 40.685254461918404]]]}, "id": "+190705+38198", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.586783741986665, 40.661898264531295], [-8.58588542670256, 40.661898264531295], [-8.58588542670256, 40.662796579815414], [-8.586783741986665, 40.662796579815414], [-8.586783741986665, 40.661898264531295]]]}, "id": "+190705+38224", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.58588542670256, 40.68884772305488], [-8.584987111418428, 40.68884772305488], [-8.584987111418428, 40.689746038338996], [-8.58588542670256, 40.689746038338996], [-8.58588542670256, 40.68884772305488]]]}, "id": "+190706+38194", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.58588542670256, 40.681661200781924], [-8.584987111418428, 40.681661200781924], [-8.584987111418428, 40.68255951606604], [-8.58588542670256, 40.68255951606604], [-8.58588542670256, 40.681661200781924]]]}, "id": "+190706+38202", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.584987111418428, 40.66728815623601], [-8.584088796134324, 40.66728815623601], [-8.584088796134324, 40.66818647152013], [-8.584987111418428, 40.66818647152013], [-8.584987111418428, 40.66728815623601]]]}, "id": "+190707+38218", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.584987111418428, 40.661898264531295], [-8.583190480850192, 40.661898264531295], [-8.583190480850192, 40.662796579815414], [-8.584987111418428, 40.662796579815414], [-8.584987111418428, 40.661898264531295]]]}, "id": "+190708+38224", "properties": {"count": 2, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.583190480850192, 40.661898264531295], [-8.582292165566088, 40.661898264531295], [-8.582292165566088, 40.662796579815414], [-8.583190480850192, 40.662796579815414], [-8.583190480850192, 40.66369489509953], [-8.584088796134324, 40.66369489509953], [-8.584088796134324, 40.662796579815414], [-8.583190480850192, 40.662796579815414], [-8.583190480850192, 40.661898264531295]]]}, "id": "+190709+38224", "properties": {"count": 2, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.581393850281955, 40.67896625492956], [-8.580495534997823, 40.67896625492956], [-8.580495534997823, 40.67986457021368], [-8.581393850281955, 40.67986457021368], [-8.581393850281955, 40.67896625492956]]]}, "id": "+190711+38205", "properties": {"count": 1, "label": 4}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.576003958577246, 40.66818647152013], [-8.575105643293114, 40.66818647152013], [-8.575105643293114, 40.669983102088366], [-8.576003958577246, 40.669983102088366], [-8.576003958577246, 40.66818647152013]]]}, "id": "+190717+38217", "properties": {"count": 2, "label": 19}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.576003958577246, 40.66549152566777], [-8.575105643293114, 40.66549152566777], [-8.575105643293114, 40.666389840951894], [-8.576003958577246, 40.666389840951894], [-8.576003958577246, 40.66549152566777]]]}, "id": "+190717+38220", "properties": {"count": 1, "label": 10}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.573309012724877, 40.66459321038365], [-8.572410697440773, 40.66459321038365], [-8.572410697440773, 40.66549152566777], [-8.573309012724877, 40.66549152566777], [-8.573309012724877, 40.66459321038365]]]}, "id": "+190720+38221", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.318187472034936, 40.925104642778315], [-8.317289156750803, 40.925104642778315], [-8.317289156750803, 40.92600295806243], [-8.318187472034936, 40.92600295806243], [-8.318187472034936, 40.925104642778315]]]}, "id": "+191004+37931", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.302916112204912, 40.9242063274942], [-8.30201779692078, 40.9242063274942], [-8.30201779692078, 40.925104642778315], [-8.302916112204912, 40.925104642778315], [-8.302916112204912, 40.9242063274942]]]}, "id": "+191021+37932", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.298424535784306, 40.92330801221007], [-8.297526220500174, 40.92330801221007], [-8.297526220500174, 40.9242063274942], [-8.298424535784306, 40.9242063274942], [-8.298424535784306, 40.92330801221007]]]}, "id": "+191026+37933", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.20499974623587, 40.99068165851904], [-8.204101430951766, 40.99068165851904], [-8.204101430951766, 40.991579973803155], [-8.20499974623587, 40.991579973803155], [-8.20499974623587, 40.99068165851904]]]}, "id": "+191130+37858", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.183440179417005, 40.98619008209844], [-8.1825418641329, 40.98619008209844], [-8.1825418641329, 40.98708839738256], [-8.183440179417005, 40.98708839738256], [-8.183440179417005, 40.98619008209844]]]}, "id": "+191154+37863", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.1825418641329, 40.98080019039372], [-8.181643548848768, 40.98080019039372], [-8.181643548848768, 40.98169850567784], [-8.1825418641329, 40.98169850567784], [-8.1825418641329, 40.98080019039372]]]}, "id": "+191155+37869", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.181643548848768, 40.98798671266668], [-8.180745233564636, 40.98798671266668], [-8.180745233564636, 40.9888850279508], [-8.181643548848768, 40.9888850279508], [-8.181643548848768, 40.98798671266668]]]}, "id": "+191156+37861", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.180745233564636, 40.979901875109604], [-8.179846918280532, 40.979901875109604], [-8.179846918280532, 40.98080019039372], [-8.180745233564636, 40.98080019039372], [-8.180745233564636, 40.979901875109604]]]}, "id": "+191157+37870", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.179846918280532, 40.95025747073366], [-8.1789486029964, 40.95025747073366], [-8.1789486029964, 40.9520541013019], [-8.179846918280532, 40.9520541013019], [-8.179846918280532, 40.95025747073366]]]}, "id": "+191158+37903", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.1789486029964, 40.9843934515302], [-8.178050287712296, 40.9843934515302], [-8.178050287712296, 40.98529176681432], [-8.1789486029964, 40.98529176681432], [-8.1789486029964, 40.9843934515302]]]}, "id": "+191159+37865", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.179846918280532, 40.943969263744826], [-8.178050287712296, 40.943969263744826], [-8.178050287712296, 40.944867579028944], [-8.1789486029964, 40.944867579028944], [-8.1789486029964, 40.94576589431306], [-8.179846918280532, 40.94576589431306], [-8.179846918280532, 40.943969263744826]]]}, "id": "+191159+37910", "properties": {"count": 3, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.178050287712296, 40.983495136246084], [-8.177151972428163, 40.983495136246084], [-8.177151972428163, 40.9843934515302], [-8.178050287712296, 40.9843934515302], [-8.178050287712296, 40.983495136246084]]]}, "id": "+191160+37866", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.178050287712296, 40.982596820961966], [-8.177151972428163, 40.982596820961966], [-8.177151972428163, 40.983495136246084], [-8.178050287712296, 40.983495136246084], [-8.178050287712296, 40.982596820961966]]]}, "id": "+191160+37867", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.178050287712296, 40.97810524454137], [-8.177151972428163, 40.97810524454137], [-8.177151972428163, 40.979003559825486], [-8.178050287712296, 40.979003559825486], [-8.178050287712296, 40.97810524454137]]]}, "id": "+191160+37872", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.178050287712296, 40.95025747073366], [-8.177151972428163, 40.95025747073366], [-8.177151972428163, 40.95115578601778], [-8.178050287712296, 40.95115578601778], [-8.178050287712296, 40.95025747073366]]]}, "id": "+191160+37903", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.177151972428163, 40.94935915544954], [-8.17625365714406, 40.94935915544954], [-8.17625365714406, 40.95025747073366], [-8.177151972428163, 40.95025747073366], [-8.177151972428163, 40.94935915544954]]]}, "id": "+191161+37904", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.177151972428163, 40.9385793720401], [-8.17625365714406, 40.9385793720401], [-8.17625365714406, 40.93947768732423], [-8.177151972428163, 40.93947768732423], [-8.177151972428163, 40.9385793720401]]]}, "id": "+191161+37916", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.17625365714406, 40.9888850279508], [-8.175355341859927, 40.9888850279508], [-8.175355341859927, 40.98978334323492], [-8.17625365714406, 40.98978334323492], [-8.17625365714406, 40.9888850279508]]]}, "id": "+191162+37860", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.17625365714406, 40.95025747073366], [-8.175355341859927, 40.95025747073366], [-8.175355341859927, 40.9520541013019], [-8.17625365714406, 40.9520541013019], [-8.17625365714406, 40.95025747073366]]]}, "id": "+191162+37903", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.17625365714406, 40.9430709484607], [-8.175355341859927, 40.9430709484607], [-8.175355341859927, 40.943969263744826], [-8.17625365714406, 40.943969263744826], [-8.17625365714406, 40.9430709484607]]]}, "id": "+191162+37911", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.175355341859927, 40.9385793720401], [-8.174457026575823, 40.9385793720401], [-8.174457026575823, 40.93947768732423], [-8.17355871129169, 40.93947768732423], [-8.17355871129169, 40.940376002608346], [-8.172660396007586, 40.940376002608346], [-8.172660396007586, 40.941274317892464], [-8.17355871129169, 40.941274317892464], [-8.17355871129169, 40.940376002608346], [-8.174457026575823, 40.940376002608346], [-8.174457026575823, 40.93947768732423], [-8.175355341859927, 40.93947768732423], [-8.175355341859927, 40.9385793720401]]]}, "id": "+191163+37916", "properties": {"count": 3, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.174457026575823, 40.944867579028944], [-8.17355871129169, 40.944867579028944], [-8.17355871129169, 40.94576589431306], [-8.174457026575823, 40.94576589431306], [-8.174457026575823, 40.94666420959718], [-8.17625365714406, 40.94666420959718], [-8.17625365714406, 40.9475625248813], [-8.177151972428163, 40.9475625248813], [-8.177151972428163, 40.948460840165424], [-8.178050287712296, 40.948460840165424], [-8.178050287712296, 40.94935915544954], [-8.1789486029964, 40.94935915544954], [-8.1789486029964, 40.9475625248813], [-8.178050287712296, 40.9475625248813], [-8.178050287712296, 40.94666420959718], [-8.177151972428163, 40.94666420959718], [-8.177151972428163, 40.94576589431306], [-8.178050287712296, 40.94576589431306], [-8.178050287712296, 40.944867579028944], [-8.175355341859927, 40.944867579028944], [-8.175355341859927, 40.94576589431306], [-8.174457026575823, 40.94576589431306], [-8.174457026575823, 40.944867579028944]]]}, "id": "+191164+37909", "properties": {"count": 12, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.174457026575823, 40.940376002608346], [-8.17355871129169, 40.940376002608346], [-8.17355871129169, 40.941274317892464], [-8.174457026575823, 40.941274317892464], [-8.174457026575823, 40.94217263317658], [-8.175355341859927, 40.94217263317658], [-8.175355341859927, 40.9430709484607], [-8.1789486029964, 40.9430709484607], [-8.1789486029964, 40.941274317892464], [-8.178050287712296, 40.941274317892464], [-8.178050287712296, 40.940376002608346], [-8.175355341859927, 40.940376002608346], [-8.175355341859927, 40.941274317892464], [-8.174457026575823, 40.941274317892464], [-8.174457026575823, 40.940376002608346]], [[-8.17625365714406, 40.941274317892464], [-8.17625365714406, 40.94217263317658], [-8.178050287712296, 40.94217263317658], [-8.178050287712296, 40.941274317892464], [-8.17625365714406, 40.941274317892464]]]}, "id": "+191164+37914", "properties": {"count": 11, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.17355871129169, 40.979901875109604], [-8.172660396007586, 40.979901875109604], [-8.172660396007586, 40.98080019039372], [-8.17355871129169, 40.98080019039372], [-8.17355871129169, 40.979901875109604]]]}, "id": "+191165+37870", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.17355871129169, 40.9475625248813], [-8.172660396007586, 40.9475625248813], [-8.172660396007586, 40.948460840165424], [-8.17355871129169, 40.948460840165424], [-8.17355871129169, 40.9475625248813]]]}, "id": "+191165+37906", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.17355871129169, 40.9430709484607], [-8.172660396007586, 40.9430709484607], [-8.172660396007586, 40.943969263744826], [-8.170863765439321, 40.943969263744826], [-8.170863765439321, 40.944867579028944], [-8.172660396007586, 40.944867579028944], [-8.172660396007586, 40.943969263744826], [-8.17355871129169, 40.943969263744826], [-8.17355871129169, 40.9430709484607]]]}, "id": "+191165+37911", "properties": {"count": 3, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.174457026575823, 40.936782741471866], [-8.172660396007586, 40.936782741471866], [-8.172660396007586, 40.937681056755984], [-8.170863765439321, 40.937681056755984], [-8.170863765439321, 40.9385793720401], [-8.174457026575823, 40.9385793720401], [-8.174457026575823, 40.936782741471866]]]}, "id": "+191165+37918", "properties": {"count": 6, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.172660396007586, 40.960138938858975], [-8.171762080723454, 40.960138938858975], [-8.171762080723454, 40.96103725414309], [-8.172660396007586, 40.96103725414309], [-8.172660396007586, 40.96193556942721], [-8.17355871129169, 40.96193556942721], [-8.17355871129169, 40.96103725414309], [-8.172660396007586, 40.96103725414309], [-8.172660396007586, 40.960138938858975]]]}, "id": "+191166+37892", "properties": {"count": 2, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.172660396007586, 40.941274317892464], [-8.171762080723454, 40.941274317892464], [-8.171762080723454, 40.94217263317658], [-8.169965450155217, 40.94217263317658], [-8.169965450155217, 40.9430709484607], [-8.171762080723454, 40.9430709484607], [-8.171762080723454, 40.94217263317658], [-8.172660396007586, 40.94217263317658], [-8.172660396007586, 40.941274317892464]]]}, "id": "+191166+37913", "properties": {"count": 3, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.17355871129169, 40.93588442618775], [-8.171762080723454, 40.93588442618775], [-8.171762080723454, 40.936782741471866], [-8.169965450155217, 40.936782741471866], [-8.169965450155217, 40.937681056755984], [-8.169067134871085, 40.937681056755984], [-8.169067134871085, 40.9385793720401], [-8.170863765439321, 40.9385793720401], [-8.170863765439321, 40.937681056755984], [-8.172660396007586, 40.937681056755984], [-8.172660396007586, 40.936782741471866], [-8.17355871129169, 40.936782741471866], [-8.17355871129169, 40.93588442618775]]]}, "id": "+191166+37919", "properties": {"count": 7, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.171762080723454, 40.95025747073366], [-8.170863765439321, 40.95025747073366], [-8.170863765439321, 40.95115578601778], [-8.171762080723454, 40.95115578601778], [-8.171762080723454, 40.95025747073366]]]}, "id": "+191167+37903", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.170863765439321, 40.96463051527957], [-8.169965450155217, 40.96463051527957], [-8.169965450155217, 40.96552883056369], [-8.170863765439321, 40.96552883056369], [-8.170863765439321, 40.96463051527957]]]}, "id": "+191168+37887", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.170863765439321, 40.963732199995455], [-8.169965450155217, 40.963732199995455], [-8.169965450155217, 40.96463051527957], [-8.170863765439321, 40.96463051527957], [-8.170863765439321, 40.963732199995455]]]}, "id": "+191168+37888", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.171762080723454, 40.93408779561951], [-8.169965450155217, 40.93408779561951], [-8.169965450155217, 40.93588442618775], [-8.170863765439321, 40.93588442618775], [-8.170863765439321, 40.93498611090363], [-8.171762080723454, 40.93498611090363], [-8.171762080723454, 40.93408779561951]]]}, "id": "+191168+37921", "properties": {"count": 3, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.170863765439321, 40.96103725414309], [-8.169067134871085, 40.96103725414309], [-8.169067134871085, 40.96193556942721], [-8.169965450155217, 40.96193556942721], [-8.169965450155217, 40.96283388471133], [-8.171762080723454, 40.96283388471133], [-8.171762080723454, 40.963732199995455], [-8.17355871129169, 40.963732199995455], [-8.17355871129169, 40.96283388471133], [-8.171762080723454, 40.96283388471133], [-8.171762080723454, 40.96193556942721], [-8.170863765439321, 40.96193556942721], [-8.170863765439321, 40.96103725414309]]]}, "id": "+191169+37891", "properties": {"count": 6, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.169965450155217, 40.95564736243838], [-8.169067134871085, 40.95564736243838], [-8.169067134871085, 40.956545677722495], [-8.169965450155217, 40.956545677722495], [-8.169965450155217, 40.95564736243838]]]}, "id": "+191169+37897", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.170863765439321, 40.94666420959718], [-8.169067134871085, 40.94666420959718], [-8.169067134871085, 40.9475625248813], [-8.170863765439321, 40.9475625248813], [-8.170863765439321, 40.94666420959718]]]}, "id": "+191169+37907", "properties": {"count": 2, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.169965450155217, 40.944867579028944], [-8.169067134871085, 40.944867579028944], [-8.169067134871085, 40.94576589431306], [-8.169965450155217, 40.94576589431306], [-8.169965450155217, 40.944867579028944]]]}, "id": "+191169+37909", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.169965450155217, 40.9430709484607], [-8.169067134871085, 40.9430709484607], [-8.169067134871085, 40.943969263744826], [-8.169965450155217, 40.943969263744826], [-8.169965450155217, 40.9430709484607]]]}, "id": "+191169+37911", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.169965450155217, 40.936782741471866], [-8.169067134871085, 40.936782741471866], [-8.169067134871085, 40.937681056755984], [-8.169965450155217, 40.937681056755984], [-8.169965450155217, 40.936782741471866]]]}, "id": "+191169+37918", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.169965450155217, 40.93408779561951], [-8.169067134871085, 40.93408779561951], [-8.169067134871085, 40.93498611090363], [-8.168168819586981, 40.93498611090363], [-8.168168819586981, 40.93588442618775], [-8.167270504302849, 40.93588442618775], [-8.167270504302849, 40.93498611090363], [-8.164575558450508, 40.93498611090363], [-8.164575558450508, 40.93588442618775], [-8.166372189018745, 40.93588442618775], [-8.166372189018745, 40.936782741471866], [-8.165473873734612, 40.936782741471866], [-8.165473873734612, 40.937681056755984], [-8.167270504302849, 40.937681056755984], [-8.167270504302849, 40.936782741471866], [-8.168168819586981, 40.936782741471866], [-8.168168819586981, 40.93588442618775], [-8.169965450155217, 40.93588442618775], [-8.169965450155217, 40.93408779561951]]]}, "id": "+191169+37921", "properties": {"count": 10, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.169067134871085, 40.95924062357486], [-8.168168819586981, 40.95924062357486], [-8.168168819586981, 40.960138938858975], [-8.169067134871085, 40.960138938858975], [-8.169067134871085, 40.95924062357486]]]}, "id": "+191170+37893", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.169965450155217, 40.95744399300661], [-8.168168819586981, 40.95744399300661], [-8.168168819586981, 40.95834230829074], [-8.169067134871085, 40.95834230829074], [-8.169067134871085, 40.95924062357486], [-8.169965450155217, 40.95924062357486], [-8.169965450155217, 40.95744399300661]]]}, "id": "+191170+37895", "properties": {"count": 3, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.170863765439321, 40.95474904715426], [-8.168168819586981, 40.95474904715426], [-8.168168819586981, 40.95564736243838], [-8.169965450155217, 40.95564736243838], [-8.169965450155217, 40.956545677722495], [-8.172660396007586, 40.956545677722495], [-8.172660396007586, 40.95564736243838], [-8.170863765439321, 40.95564736243838], [-8.170863765439321, 40.95474904715426]]]}, "id": "+191170+37898", "properties": {"count": 6, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.171762080723454, 40.941274317892464], [-8.168168819586981, 40.941274317892464], [-8.168168819586981, 40.94217263317658], [-8.171762080723454, 40.94217263317658], [-8.171762080723454, 40.941274317892464]]]}, "id": "+191170+37913", "properties": {"count": 4, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.169067134871085, 40.937681056755984], [-8.168168819586981, 40.937681056755984], [-8.168168819586981, 40.9385793720401], [-8.169067134871085, 40.9385793720401], [-8.169067134871085, 40.937681056755984]]]}, "id": "+191170+37917", "properties": {"count": 1, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.169067134871085, 40.95834230829074], [-8.167270504302849, 40.95834230829074], [-8.167270504302849, 40.95924062357486], [-8.169067134871085, 40.95924062357486], [-8.169067134871085, 40.95834230829074]]]}, "id": "+191171+37894", "properties": {"count": 2, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.168168819586981, 40.943969263744826], [-8.167270504302849, 40.943969263744826], [-8.167270504302849, 40.944867579028944], [-8.168168819586981, 40.944867579028944], [-8.168168819586981, 40.943969263744826]]]}, "id": "+191171+37910", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.168168819586981, 40.936782741471866], [-8.167270504302849, 40.936782741471866], [-8.167270504302849, 40.937681056755984], [-8.168168819586981, 40.937681056755984], [-8.168168819586981, 40.936782741471866]]]}, "id": "+191171+37918", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.167270504302849, 40.96732546113193], [-8.166372189018745, 40.96732546113193], [-8.166372189018745, 40.96822377641605], [-8.167270504302849, 40.96822377641605], [-8.167270504302849, 40.96732546113193]]]}, "id": "+191172+37884", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.168168819586981, 40.95474904715426], [-8.166372189018745, 40.95474904715426], [-8.166372189018745, 40.95564736243838], [-8.164575558450508, 40.95564736243838], [-8.164575558450508, 40.95744399300661], [-8.165473873734612, 40.95744399300661], [-8.165473873734612, 40.95834230829074], [-8.166372189018745, 40.95834230829074], [-8.166372189018745, 40.95744399300661], [-8.168168819586981, 40.95744399300661], [-8.168168819586981, 40.956545677722495], [-8.166372189018745, 40.956545677722495], [-8.166372189018745, 40.95564736243838], [-8.168168819586981, 40.95564736243838], [-8.168168819586981, 40.95474904715426]], [[-8.165473873734612, 40.956545677722495], [-8.165473873734612, 40.95744399300661], [-8.166372189018745, 40.95744399300661], [-8.166372189018745, 40.956545677722495], [-8.165473873734612, 40.956545677722495]]]}, "id": "+191172+37898", "properties": {"count": 8, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.167270504302849, 40.95025747073366], [-8.166372189018745, 40.95025747073366], [-8.166372189018745, 40.95115578601778], [-8.167270504302849, 40.95115578601778], [-8.167270504302849, 40.9520541013019], [-8.166372189018745, 40.9520541013019], [-8.166372189018745, 40.952952416586015], [-8.168168819586981, 40.952952416586015], [-8.168168819586981, 40.95115578601778], [-8.167270504302849, 40.95115578601778], [-8.167270504302849, 40.95025747073366]]]}, "id": "+191172+37903", "properties": {"count": 4, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.166372189018745, 40.956545677722495], [-8.165473873734612, 40.956545677722495], [-8.165473873734612, 40.95744399300661], [-8.166372189018745, 40.95744399300661], [-8.166372189018745, 40.956545677722495]]]}, "id": "+191173+37896", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.166372189018745, 40.93588442618775], [-8.165473873734612, 40.93588442618775], [-8.165473873734612, 40.936782741471866], [-8.166372189018745, 40.936782741471866], [-8.166372189018745, 40.93588442618775]]]}, "id": "+191173+37919", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.168168819586981, 40.93408779561951], [-8.165473873734612, 40.93408779561951], [-8.165473873734612, 40.93498611090363], [-8.167270504302849, 40.93498611090363], [-8.167270504302849, 40.93588442618775], [-8.168168819586981, 40.93588442618775], [-8.168168819586981, 40.93408779561951]]]}, "id": "+191173+37921", "properties": {"count": 4, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.165473873734612, 40.95025747073366], [-8.164575558450508, 40.95025747073366], [-8.164575558450508, 40.95115578601778], [-8.165473873734612, 40.95115578601778], [-8.165473873734612, 40.9520541013019], [-8.167270504302849, 40.9520541013019], [-8.167270504302849, 40.95115578601778], [-8.165473873734612, 40.95115578601778], [-8.165473873734612, 40.95025747073366]]]}, "id": "+191174+37903", "properties": {"count": 3, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.165473873734612, 40.944867579028944], [-8.164575558450508, 40.944867579028944], [-8.164575558450508, 40.94576589431306], [-8.165473873734612, 40.94576589431306], [-8.165473873734612, 40.944867579028944]]]}, "id": "+191174+37909", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.165473873734612, 40.93588442618775], [-8.164575558450508, 40.93588442618775], [-8.164575558450508, 40.936782741471866], [-8.165473873734612, 40.936782741471866], [-8.165473873734612, 40.93588442618775]]]}, "id": "+191174+37919", "properties": {"count": 1, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.164575558450508, 40.983495136246084], [-8.163677243166376, 40.983495136246084], [-8.163677243166376, 40.9843934515302], [-8.164575558450508, 40.9843934515302], [-8.164575558450508, 40.983495136246084]]]}, "id": "+191175+37866", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.163677243166376, 40.95474904715426], [-8.162778927882243, 40.95474904715426], [-8.162778927882243, 40.95564736243838], [-8.163677243166376, 40.95564736243838], [-8.163677243166376, 40.95474904715426]]]}, "id": "+191176+37898", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.163677243166376, 40.95115578601778], [-8.162778927882243, 40.95115578601778], [-8.162778927882243, 40.9520541013019], [-8.163677243166376, 40.9520541013019], [-8.163677243166376, 40.95115578601778]]]}, "id": "+191176+37902", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.163677243166376, 40.94935915544954], [-8.162778927882243, 40.94935915544954], [-8.162778927882243, 40.95115578601778], [-8.163677243166376, 40.95115578601778], [-8.163677243166376, 40.94935915544954]]]}, "id": "+191176+37904", "properties": {"count": 2, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.164575558450508, 40.93498611090363], [-8.162778927882243, 40.93498611090363], [-8.162778927882243, 40.936782741471866], [-8.164575558450508, 40.936782741471866], [-8.164575558450508, 40.93498611090363]]]}, "id": "+191176+37920", "properties": {"count": 4, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.162778927882243, 40.9843934515302], [-8.16188061259814, 40.9843934515302], [-8.16188061259814, 40.98529176681432], [-8.162778927882243, 40.98529176681432], [-8.162778927882243, 40.9843934515302]]]}, "id": "+191177+37865", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.162778927882243, 40.95744399300661], [-8.16188061259814, 40.95744399300661], [-8.16188061259814, 40.95834230829074], [-8.162778927882243, 40.95834230829074], [-8.162778927882243, 40.95744399300661]]]}, "id": "+191177+37895", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.162778927882243, 40.956545677722495], [-8.16188061259814, 40.956545677722495], [-8.16188061259814, 40.95744399300661], [-8.162778927882243, 40.95744399300661], [-8.162778927882243, 40.956545677722495]]]}, "id": "+191177+37896", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.162778927882243, 40.95025747073366], [-8.16188061259814, 40.95025747073366], [-8.16188061259814, 40.9520541013019], [-8.162778927882243, 40.9520541013019], [-8.162778927882243, 40.95025747073366]]]}, "id": "+191177+37903", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.162778927882243, 40.93588442618775], [-8.16188061259814, 40.93588442618775], [-8.16188061259814, 40.937681056755984], [-8.162778927882243, 40.937681056755984], [-8.162778927882243, 40.93588442618775]]]}, "id": "+191177+37919", "properties": {"count": 2, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.16188061259814, 40.98708839738256], [-8.160982297314007, 40.98708839738256], [-8.160982297314007, 40.98798671266668], [-8.16188061259814, 40.98798671266668], [-8.16188061259814, 40.98708839738256]]]}, "id": "+191178+37862", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.162778927882243, 40.95385073187014], [-8.160982297314007, 40.95385073187014], [-8.160982297314007, 40.95474904715426], [-8.160083982029903, 40.95474904715426], [-8.160083982029903, 40.95564736243838], [-8.160982297314007, 40.95564736243838], [-8.160982297314007, 40.95474904715426], [-8.16188061259814, 40.95474904715426], [-8.16188061259814, 40.95564736243838], [-8.162778927882243, 40.95564736243838], [-8.162778927882243, 40.956545677722495], [-8.163677243166376, 40.956545677722495], [-8.163677243166376, 40.95744399300661], [-8.164575558450508, 40.95744399300661], [-8.164575558450508, 40.95564736243838], [-8.162778927882243, 40.95564736243838], [-8.162778927882243, 40.95385073187014]]]}, "id": "+191178+37899", "properties": {"count": 7, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.164575558450508, 40.9520541013019], [-8.160982297314007, 40.9520541013019], [-8.160982297314007, 40.952952416586015], [-8.164575558450508, 40.952952416586015], [-8.164575558450508, 40.95385073187014], [-8.165473873734612, 40.95385073187014], [-8.165473873734612, 40.95474904715426], [-8.167270504302849, 40.95474904715426], [-8.167270504302849, 40.952952416586015], [-8.164575558450508, 40.952952416586015], [-8.164575558450508, 40.9520541013019]]]}, "id": "+191178+37901", "properties": {"count": 9, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.16188061259814, 40.9475625248813], [-8.160982297314007, 40.9475625248813], [-8.160982297314007, 40.948460840165424], [-8.16188061259814, 40.948460840165424], [-8.16188061259814, 40.9475625248813]]]}, "id": "+191178+37906", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.16188061259814, 40.95834230829074], [-8.160083982029903, 40.95834230829074], [-8.160083982029903, 40.95924062357486], [-8.16188061259814, 40.95924062357486], [-8.16188061259814, 40.95834230829074]]]}, "id": "+191179+37894", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.160982297314007, 40.95385073187014], [-8.160083982029903, 40.95385073187014], [-8.160083982029903, 40.95474904715426], [-8.160982297314007, 40.95474904715426], [-8.160982297314007, 40.95564736243838], [-8.16188061259814, 40.95564736243838], [-8.16188061259814, 40.95474904715426], [-8.160982297314007, 40.95474904715426], [-8.160982297314007, 40.95385073187014]]]}, "id": "+191179+37899", "properties": {"count": 2, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.16188061259814, 40.943969263744826], [-8.160083982029903, 40.943969263744826], [-8.160083982029903, 40.944867579028944], [-8.16188061259814, 40.944867579028944], [-8.16188061259814, 40.943969263744826]]]}, "id": "+191179+37910", "properties": {"count": 2, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.16188061259814, 40.9430709484607], [-8.160083982029903, 40.9430709484607], [-8.160083982029903, 40.943969263744826], [-8.16188061259814, 40.943969263744826], [-8.16188061259814, 40.9430709484607]]]}, "id": "+191179+37911", "properties": {"count": 2, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.160083982029903, 40.956545677722495], [-8.15918566674577, 40.956545677722495], [-8.15918566674577, 40.95744399300661], [-8.160083982029903, 40.95744399300661], [-8.160083982029903, 40.956545677722495]]]}, "id": "+191180+37896", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.160083982029903, 40.95385073187014], [-8.15918566674577, 40.95385073187014], [-8.15918566674577, 40.95564736243838], [-8.160083982029903, 40.95564736243838], [-8.160083982029903, 40.95385073187014]]]}, "id": "+191180+37899", "properties": {"count": 2, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.160982297314007, 40.94217263317658], [-8.15918566674577, 40.94217263317658], [-8.15918566674577, 40.9430709484607], [-8.160982297314007, 40.9430709484607], [-8.160982297314007, 40.94217263317658]]]}, "id": "+191180+37912", "properties": {"count": 2, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.160083982029903, 40.93498611090363], [-8.15918566674577, 40.93498611090363], [-8.15918566674577, 40.93588442618775], [-8.160083982029903, 40.93588442618775], [-8.160083982029903, 40.93498611090363]]]}, "id": "+191180+37920", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.15918566674577, 40.95115578601778], [-8.158287351461667, 40.95115578601778], [-8.158287351461667, 40.9520541013019], [-8.15918566674577, 40.9520541013019], [-8.15918566674577, 40.95115578601778]]]}, "id": "+191181+37902", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.15918566674577, 40.94217263317658], [-8.158287351461667, 40.94217263317658], [-8.158287351461667, 40.9430709484607], [-8.15918566674577, 40.9430709484607], [-8.15918566674577, 40.943969263744826], [-8.160083982029903, 40.943969263744826], [-8.160083982029903, 40.9430709484607], [-8.15918566674577, 40.9430709484607], [-8.15918566674577, 40.94217263317658]]]}, "id": "+191181+37912", "properties": {"count": 2, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.160083982029903, 40.936782741471866], [-8.158287351461667, 40.936782741471866], [-8.158287351461667, 40.937681056755984], [-8.160083982029903, 40.937681056755984], [-8.160083982029903, 40.936782741471866]]]}, "id": "+191181+37918", "properties": {"count": 2, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.157389036177534, 40.97361366812077], [-8.15649072089343, 40.97361366812077], [-8.15649072089343, 40.97451198340489], [-8.157389036177534, 40.97451198340489], [-8.157389036177534, 40.97361366812077]]]}, "id": "+191183+37877", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.15918566674577, 40.93947768732423], [-8.15649072089343, 40.93947768732423], [-8.15649072089343, 40.940376002608346], [-8.15918566674577, 40.940376002608346], [-8.15918566674577, 40.93947768732423]]]}, "id": "+191183+37915", "properties": {"count": 3, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.157389036177534, 40.93588442618775], [-8.15649072089343, 40.93588442618775], [-8.15649072089343, 40.936782741471866], [-8.157389036177534, 40.936782741471866], [-8.157389036177534, 40.93588442618775]]]}, "id": "+191183+37919", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.157389036177534, 40.93049453448303], [-8.15649072089343, 40.93049453448303], [-8.15649072089343, 40.93139284976715], [-8.155592405609298, 40.93139284976715], [-8.155592405609298, 40.93229116505127], [-8.157389036177534, 40.93229116505127], [-8.157389036177534, 40.93049453448303]]]}, "id": "+191183+37925", "properties": {"count": 3, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.157389036177534, 40.972715352836644], [-8.155592405609298, 40.972715352836644], [-8.155592405609298, 40.97361366812077], [-8.157389036177534, 40.97361366812077], [-8.157389036177534, 40.972715352836644]]]}, "id": "+191184+37878", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.15649072089343, 40.9520541013019], [-8.155592405609298, 40.9520541013019], [-8.155592405609298, 40.952952416586015], [-8.15649072089343, 40.952952416586015], [-8.15649072089343, 40.9520541013019]]]}, "id": "+191184+37901", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.155592405609298, 40.92959621919891], [-8.154694090325194, 40.92959621919891], [-8.154694090325194, 40.93229116505127], [-8.155592405609298, 40.93229116505127], [-8.155592405609298, 40.93139284976715], [-8.15649072089343, 40.93139284976715], [-8.15649072089343, 40.93049453448303], [-8.155592405609298, 40.93049453448303], [-8.155592405609298, 40.92959621919891]]]}, "id": "+191185+37926", "properties": {"count": 4, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.154694090325194, 40.979003559825486], [-8.153795775041061, 40.979003559825486], [-8.153795775041061, 40.979901875109604], [-8.154694090325194, 40.979901875109604], [-8.154694090325194, 40.979003559825486]]]}, "id": "+191186+37871", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.154694090325194, 40.97002040698429], [-8.153795775041061, 40.97002040698429], [-8.153795775041061, 40.97091872226841], [-8.154694090325194, 40.97091872226841], [-8.154694090325194, 40.97002040698429]]]}, "id": "+191186+37881", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.154694090325194, 40.944867579028944], [-8.153795775041061, 40.944867579028944], [-8.153795775041061, 40.94576589431306], [-8.154694090325194, 40.94576589431306], [-8.154694090325194, 40.944867579028944]]]}, "id": "+191186+37909", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.154694090325194, 40.937681056755984], [-8.153795775041061, 40.937681056755984], [-8.153795775041061, 40.9385793720401], [-8.152897459756929, 40.9385793720401], [-8.152897459756929, 40.93947768732423], [-8.151999144472825, 40.93947768732423], [-8.151999144472825, 40.940376002608346], [-8.152897459756929, 40.940376002608346], [-8.152897459756929, 40.93947768732423], [-8.153795775041061, 40.93947768732423], [-8.153795775041061, 40.9385793720401], [-8.154694090325194, 40.9385793720401], [-8.154694090325194, 40.937681056755984]]]}, "id": "+191186+37917", "properties": {"count": 3, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.154694090325194, 40.93408779561951], [-8.153795775041061, 40.93408779561951], [-8.153795775041061, 40.93498611090363], [-8.152897459756929, 40.93498611090363], [-8.152897459756929, 40.93588442618775], [-8.153795775041061, 40.93588442618775], [-8.153795775041061, 40.93498611090363], [-8.154694090325194, 40.93498611090363], [-8.154694090325194, 40.93408779561951]]]}, "id": "+191186+37921", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.154694090325194, 40.933189480335386], [-8.153795775041061, 40.933189480335386], [-8.153795775041061, 40.93408779561951], [-8.152897459756929, 40.93408779561951], [-8.152897459756929, 40.93498611090363], [-8.153795775041061, 40.93498611090363], [-8.153795775041061, 40.93588442618775], [-8.154694090325194, 40.93588442618775], [-8.154694090325194, 40.93498611090363], [-8.153795775041061, 40.93498611090363], [-8.153795775041061, 40.93408779561951], [-8.154694090325194, 40.93408779561951], [-8.154694090325194, 40.933189480335386]]]}, "id": "+191186+37922", "properties": {"count": 3, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.153795775041061, 40.982596820961966], [-8.152897459756929, 40.982596820961966], [-8.152897459756929, 40.983495136246084], [-8.153795775041061, 40.983495136246084], [-8.153795775041061, 40.982596820961966]]]}, "id": "+191187+37867", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.153795775041061, 40.956545677722495], [-8.152897459756929, 40.956545677722495], [-8.152897459756929, 40.95744399300661], [-8.151999144472825, 40.95744399300661], [-8.151999144472825, 40.95834230829074], [-8.152897459756929, 40.95834230829074], [-8.152897459756929, 40.95744399300661], [-8.153795775041061, 40.95744399300661], [-8.153795775041061, 40.956545677722495]]]}, "id": "+191187+37896", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.153795775041061, 40.9520541013019], [-8.152897459756929, 40.9520541013019], [-8.152897459756929, 40.952952416586015], [-8.153795775041061, 40.952952416586015], [-8.153795775041061, 40.9520541013019]]]}, "id": "+191187+37901", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.152897459756929, 40.943969263744826], [-8.151999144472825, 40.943969263744826], [-8.151999144472825, 40.94576589431306], [-8.150202513904588, 40.94576589431306], [-8.150202513904588, 40.944867579028944], [-8.149304198620456, 40.944867579028944], [-8.149304198620456, 40.94576589431306], [-8.150202513904588, 40.94576589431306], [-8.150202513904588, 40.94666420959718], [-8.151999144472825, 40.94666420959718], [-8.151999144472825, 40.94576589431306], [-8.152897459756929, 40.94576589431306], [-8.152897459756929, 40.943969263744826]]]}, "id": "+191188+37910", "properties": {"count": 5, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.151999144472825, 40.96103725414309], [-8.151100829188692, 40.96103725414309], [-8.151100829188692, 40.96193556942721], [-8.151999144472825, 40.96193556942721], [-8.151999144472825, 40.96103725414309]]]}, "id": "+191189+37891", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.151999144472825, 40.95924062357486], [-8.151100829188692, 40.95924062357486], [-8.151100829188692, 40.960138938858975], [-8.151999144472825, 40.960138938858975], [-8.151999144472825, 40.95924062357486]]]}, "id": "+191189+37893", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.151999144472825, 40.943969263744826], [-8.151100829188692, 40.943969263744826], [-8.151100829188692, 40.944867579028944], [-8.151999144472825, 40.944867579028944], [-8.151999144472825, 40.943969263744826]]]}, "id": "+191189+37910", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.151999144472825, 40.94217263317658], [-8.151100829188692, 40.94217263317658], [-8.151100829188692, 40.943969263744826], [-8.152897459756929, 40.943969263744826], [-8.152897459756929, 40.944867579028944], [-8.153795775041061, 40.944867579028944], [-8.153795775041061, 40.943969263744826], [-8.152897459756929, 40.943969263744826], [-8.152897459756929, 40.9430709484607], [-8.151999144472825, 40.9430709484607], [-8.151999144472825, 40.94217263317658]]]}, "id": "+191189+37912", "properties": {"count": 4, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.151100829188692, 40.95834230829074], [-8.150202513904588, 40.95834230829074], [-8.150202513904588, 40.95924062357486], [-8.151100829188692, 40.95924062357486], [-8.151100829188692, 40.95834230829074]]]}, "id": "+191190+37894", "properties": {"count": 1, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.151100829188692, 40.95385073187014], [-8.150202513904588, 40.95385073187014], [-8.150202513904588, 40.95474904715426], [-8.151100829188692, 40.95474904715426], [-8.151100829188692, 40.95385073187014]]]}, "id": "+191190+37899", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.150202513904588, 40.97451198340489], [-8.149304198620456, 40.97451198340489], [-8.149304198620456, 40.975410298689006], [-8.150202513904588, 40.975410298689006], [-8.150202513904588, 40.97451198340489]]]}, "id": "+191191+37876", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.150202513904588, 40.972715352836644], [-8.149304198620456, 40.972715352836644], [-8.149304198620456, 40.97361366812077], [-8.150202513904588, 40.97361366812077], [-8.150202513904588, 40.972715352836644]]]}, "id": "+191191+37878", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.150202513904588, 40.95474904715426], [-8.149304198620456, 40.95474904715426], [-8.149304198620456, 40.95564736243838], [-8.150202513904588, 40.95564736243838], [-8.150202513904588, 40.95474904715426]]]}, "id": "+191191+37898", "properties": {"count": 1, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.150202513904588, 40.95385073187014], [-8.149304198620456, 40.95385073187014], [-8.149304198620456, 40.95474904715426], [-8.148405883336352, 40.95474904715426], [-8.148405883336352, 40.956545677722495], [-8.149304198620456, 40.956545677722495], [-8.149304198620456, 40.95744399300661], [-8.148405883336352, 40.95744399300661], [-8.148405883336352, 40.95924062357486], [-8.149304198620456, 40.95924062357486], [-8.149304198620456, 40.960138938858975], [-8.151100829188692, 40.960138938858975], [-8.151100829188692, 40.95924062357486], [-8.150202513904588, 40.95924062357486], [-8.150202513904588, 40.95834230829074], [-8.151999144472825, 40.95834230829074], [-8.151999144472825, 40.95744399300661], [-8.152897459756929, 40.95744399300661], [-8.152897459756929, 40.956545677722495], [-8.153795775041061, 40.956545677722495], [-8.153795775041061, 40.95564736243838], [-8.152897459756929, 40.95564736243838], [-8.152897459756929, 40.956545677722495], [-8.151999144472825, 40.956545677722495], [-8.151999144472825, 40.95474904715426], [-8.152897459756929, 40.95474904715426], [-8.152897459756929, 40.95385073187014], [-8.151100829188692, 40.95385073187014], [-8.151100829188692, 40.95474904715426], [-8.150202513904588, 40.95474904715426], [-8.150202513904588, 40.95385073187014]], [[-8.149304198620456, 40.95474904715426], [-8.149304198620456, 40.95564736243838], [-8.150202513904588, 40.95564736243838], [-8.150202513904588, 40.95474904715426], [-8.149304198620456, 40.95474904715426]]]}, "id": "+191191+37899", "properties": {"count": 23, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.151100829188692, 40.95115578601778], [-8.149304198620456, 40.95115578601778], [-8.149304198620456, 40.952952416586015], [-8.151999144472825, 40.952952416586015], [-8.151999144472825, 40.9520541013019], [-8.151100829188692, 40.9520541013019], [-8.151100829188692, 40.95115578601778]]]}, "id": "+191191+37902", "properties": {"count": 5, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.150202513904588, 40.95025747073366], [-8.149304198620456, 40.95025747073366], [-8.149304198620456, 40.95115578601778], [-8.150202513904588, 40.95115578601778], [-8.150202513904588, 40.95025747073366]]]}, "id": "+191191+37903", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.151100829188692, 40.93947768732423], [-8.149304198620456, 40.93947768732423], [-8.149304198620456, 40.940376002608346], [-8.151100829188692, 40.940376002608346], [-8.151100829188692, 40.93947768732423]]]}, "id": "+191191+37915", "properties": {"count": 2, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.150202513904588, 40.93229116505127], [-8.149304198620456, 40.93229116505127], [-8.149304198620456, 40.933189480335386], [-8.150202513904588, 40.933189480335386], [-8.150202513904588, 40.93229116505127]]]}, "id": "+191191+37923", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.149304198620456, 40.97720692925724], [-8.148405883336352, 40.97720692925724], [-8.148405883336352, 40.97810524454137], [-8.149304198620456, 40.97810524454137], [-8.149304198620456, 40.97720692925724]]]}, "id": "+191192+37873", "properties": {"count": 1, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.149304198620456, 40.9520541013019], [-8.148405883336352, 40.9520541013019], [-8.148405883336352, 40.952952416586015], [-8.149304198620456, 40.952952416586015], [-8.149304198620456, 40.9520541013019]]]}, "id": "+191192+37901", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.149304198620456, 40.94576589431306], [-8.148405883336352, 40.94576589431306], [-8.148405883336352, 40.94666420959718], [-8.149304198620456, 40.94666420959718], [-8.149304198620456, 40.94576589431306]]]}, "id": "+191192+37908", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.149304198620456, 40.98080019039372], [-8.14750756805222, 40.98080019039372], [-8.14750756805222, 40.98169850567784], [-8.149304198620456, 40.98169850567784], [-8.149304198620456, 40.98080019039372]]]}, "id": "+191193+37869", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.148405883336352, 40.979003559825486], [-8.14750756805222, 40.979003559825486], [-8.14750756805222, 40.979901875109604], [-8.148405883336352, 40.979901875109604], [-8.148405883336352, 40.979003559825486]]]}, "id": "+191193+37871", "properties": {"count": 1, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.148405883336352, 40.976308613973124], [-8.14750756805222, 40.976308613973124], [-8.14750756805222, 40.97720692925724], [-8.148405883336352, 40.97720692925724], [-8.148405883336352, 40.976308613973124]]]}, "id": "+191193+37874", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.148405883336352, 40.960138938858975], [-8.14750756805222, 40.960138938858975], [-8.14750756805222, 40.96103725414309], [-8.148405883336352, 40.96103725414309], [-8.148405883336352, 40.96193556942721], [-8.149304198620456, 40.96193556942721], [-8.149304198620456, 40.96103725414309], [-8.152897459756929, 40.96103725414309], [-8.152897459756929, 40.960138938858975], [-8.149304198620456, 40.960138938858975], [-8.149304198620456, 40.96103725414309], [-8.148405883336352, 40.96103725414309], [-8.148405883336352, 40.960138938858975]]]}, "id": "+191193+37892", "properties": {"count": 6, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.148405883336352, 40.94666420959718], [-8.14750756805222, 40.94666420959718], [-8.14750756805222, 40.9475625248813], [-8.146609252768116, 40.9475625248813], [-8.146609252768116, 40.94935915544954], [-8.14750756805222, 40.94935915544954], [-8.14750756805222, 40.95025747073366], [-8.148405883336352, 40.95025747073366], [-8.148405883336352, 40.95115578601778], [-8.149304198620456, 40.95115578601778], [-8.149304198620456, 40.95025747073366], [-8.150202513904588, 40.95025747073366], [-8.150202513904588, 40.95115578601778], [-8.151100829188692, 40.95115578601778], [-8.151100829188692, 40.9520541013019], [-8.152897459756929, 40.9520541013019], [-8.152897459756929, 40.95115578601778], [-8.153795775041061, 40.95115578601778], [-8.153795775041061, 40.9520541013019], [-8.158287351461667, 40.9520541013019], [-8.158287351461667, 40.95385073187014], [-8.157389036177534, 40.95385073187014], [-8.157389036177534, 40.95564736243838], [-8.15918566674577, 40.95564736243838], [-8.15918566674577, 40.9520541013019], [-8.158287351461667, 40.9520541013019], [-8.158287351461667, 40.95115578601778], [-8.155592405609298, 40.95115578601778], [-8.155592405609298, 40.95025747073366], [-8.154694090325194, 40.95025747073366], [-8.154694090325194, 40.94935915544954], [-8.152897459756929, 40.94935915544954], [-8.152897459756929, 40.95025747073366], [-8.151100829188692, 40.95025747073366], [-8.151100829188692, 40.94666420959718], [-8.149304198620456, 40.94666420959718], [-8.149304198620456, 40.9475625248813], [-8.148405883336352, 40.9475625248813], [-8.148405883336352, 40.94666420959718]]]}, "id": "+191193+37907", "properties": {"count": 39, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.148405883336352, 40.94217263317658], [-8.14750756805222, 40.94217263317658], [-8.14750756805222, 40.9430709484607], [-8.148405883336352, 40.9430709484607], [-8.148405883336352, 40.94217263317658]]]}, "id": "+191193+37912", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.148405883336352, 40.933189480335386], [-8.14750756805222, 40.933189480335386], [-8.14750756805222, 40.93408779561951], [-8.148405883336352, 40.93408779561951], [-8.148405883336352, 40.933189480335386]]]}, "id": "+191193+37922", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.148405883336352, 40.93139284976715], [-8.14750756805222, 40.93139284976715], [-8.14750756805222, 40.93229116505127], [-8.148405883336352, 40.93229116505127], [-8.148405883336352, 40.933189480335386], [-8.149304198620456, 40.933189480335386], [-8.149304198620456, 40.93498611090363], [-8.148405883336352, 40.93498611090363], [-8.148405883336352, 40.93408779561951], [-8.14750756805222, 40.93408779561951], [-8.14750756805222, 40.936782741471866], [-8.143914306915747, 40.936782741471866], [-8.143914306915747, 40.93498611090363], [-8.143015991631614, 40.93498611090363], [-8.143015991631614, 40.93588442618775], [-8.14211767634751, 40.93588442618775], [-8.14211767634751, 40.936782741471866], [-8.143015991631614, 40.936782741471866], [-8.143015991631614, 40.937681056755984], [-8.14211767634751, 40.937681056755984], [-8.14211767634751, 40.9385793720401], [-8.140321045779274, 40.9385793720401], [-8.140321045779274, 40.936782741471866], [-8.139422730495141, 40.936782741471866], [-8.139422730495141, 40.93588442618775], [-8.138524415211037, 40.93588442618775], [-8.138524415211037, 40.93498611090363], [-8.140321045779274, 40.93498611090363], [-8.140321045779274, 40.93408779561951], [-8.138524415211037, 40.93408779561951], [-8.138524415211037, 40.93498611090363], [-8.137626099926905, 40.93498611090363], [-8.137626099926905, 40.93588442618775], [-8.136727784642801, 40.93588442618775], [-8.136727784642801, 40.93498611090363], [-8.135829469358669, 40.93498611090363], [-8.135829469358669, 40.93588442618775], [-8.134931154074565, 40.93588442618775], [-8.134931154074565, 40.936782741471866], [-8.134032838790432, 40.936782741471866], [-8.134032838790432, 40.937681056755984], [-8.134931154074565, 40.937681056755984], [-8.134931154074565, 40.936782741471866], [-8.137626099926905, 40.936782741471866], [-8.137626099926905, 40.93588442618775], [-8.138524415211037, 40.93588442618775], [-8.138524415211037, 40.9385793720401], [-8.137626099926905, 40.9385793720401], [-8.137626099926905, 40.937681056755984], [-8.136727784642801, 40.937681056755984], [-8.136727784642801, 40.9385793720401], [-8.135829469358669, 40.9385793720401], [-8.135829469358669, 40.940376002608346], [-8.136727784642801, 40.940376002608346], [-8.136727784642801, 40.9385793720401], [-8.137626099926905, 40.9385793720401], [-8.137626099926905, 40.94217263317658], [-8.135829469358669, 40.94217263317658], [-8.135829469358669, 40.9430709484607], [-8.134931154074565, 40.9430709484607], [-8.134931154074565, 40.943969263744826], [-8.134032838790432, 40.943969263744826], [-8.134032838790432, 40.9430709484607], [-8.1331345235063, 40.9430709484607], [-8.1331345235063, 40.943969263744826], [-8.134032838790432, 40.943969263744826], [-8.134032838790432, 40.94576589431306], [-8.136727784642801, 40.94576589431306], [-8.136727784642801, 40.94666420959718], [-8.135829469358669, 40.94666420959718], [-8.135829469358669, 40.9475625248813], [-8.134931154074565, 40.9475625248813], [-8.134931154074565, 40.94666420959718], [-8.134032838790432, 40.94666420959718], [-8.134032838790432, 40.948460840165424], [-8.1331345235063, 40.948460840165424], [-8.1331345235063, 40.9475625248813], [-8.132236208222196, 40.9475625248813], [-8.132236208222196, 40.94666420959718], [-8.131337892938063, 40.94666420959718], [-8.131337892938063, 40.9475625248813], [-8.132236208222196, 40.9475625248813], [-8.132236208222196, 40.94935915544954], [-8.134032838790432, 40.94935915544954], [-8.134032838790432, 40.948460840165424], [-8.134931154074565, 40.948460840165424], [-8.134931154074565, 40.95025747073366], [-8.135829469358669, 40.95025747073366], [-8.135829469358669, 40.95115578601778], [-8.134032838790432, 40.95115578601778], [-8.134032838790432, 40.9520541013019], [-8.1331345235063, 40.9520541013019], [-8.1331345235063, 40.952952416586015], [-8.132236208222196, 40.952952416586015], [-8.132236208222196, 40.9520541013019], [-8.131337892938063, 40.9520541013019], [-8.131337892938063, 40.95385073187014], [-8.134032838790432, 40.95385073187014], [-8.134032838790432, 40.95474904715426], [-8.1331345235063, 40.95474904715426], [-8.1331345235063, 40.95744399300661], [-8.135829469358669, 40.95744399300661], [-8.135829469358669, 40.956545677722495], [-8.134931154074565, 40.956545677722495], [-8.134931154074565, 40.95474904715426], [-8.135829469358669, 40.95474904715426], [-8.135829469358669, 40.95385073187014], [-8.137626099926905, 40.95385073187014], [-8.137626099926905, 40.952952416586015], [-8.138524415211037, 40.952952416586015], [-8.138524415211037, 40.95385073187014], [-8.139422730495141, 40.95385073187014], [-8.139422730495141, 40.9520541013019], [-8.141219361063378, 40.9520541013019], [-8.141219361063378, 40.95115578601778], [-8.14211767634751, 40.95115578601778], [-8.14211767634751, 40.95025747073366], [-8.139422730495141, 40.95025747073366], [-8.139422730495141, 40.9475625248813], [-8.141219361063378, 40.9475625248813], [-8.141219361063378, 40.94666420959718], [-8.14211767634751, 40.94666420959718], [-8.14211767634751, 40.94576589431306], [-8.143015991631614, 40.94576589431306], [-8.143015991631614, 40.94935915544954], [-8.143914306915747, 40.94935915544954], [-8.143914306915747, 40.95115578601778], [-8.145710937483983, 40.95115578601778], [-8.145710937483983, 40.95025747073366], [-8.146609252768116, 40.95025747073366], [-8.146609252768116, 40.9520541013019], [-8.148405883336352, 40.9520541013019], [-8.148405883336352, 40.95025747073366], [-8.146609252768116, 40.95025747073366], [-8.146609252768116, 40.94666420959718], [-8.148405883336352, 40.94666420959718], [-8.148405883336352, 40.94576589431306], [-8.14481262219988, 40.94576589431306], [-8.14481262219988, 40.9475625248813], [-8.143914306915747, 40.9475625248813], [-8.143914306915747, 40.9430709484607], [-8.145710937483983, 40.9430709484607], [-8.145710937483983, 40.943969263744826], [-8.14481262219988, 40.943969263744826], [-8.14481262219988, 40.944867579028944], [-8.145710937483983, 40.944867579028944], [-8.145710937483983, 40.943969263744826], [-8.146609252768116, 40.943969263744826], [-8.146609252768116, 40.944867579028944], [-8.14750756805222, 40.944867579028944], [-8.14750756805222, 40.943969263744826], [-8.146609252768116, 40.943969263744826], [-8.146609252768116, 40.9430709484607], [-8.14750756805222, 40.9430709484607], [-8.14750756805222, 40.94217263317658], [-8.148405883336352, 40.94217263317658], [-8.148405883336352, 40.9430709484607], [-8.150202513904588, 40.9430709484607], [-8.150202513904588, 40.943969263744826], [-8.151100829188692, 40.943969263744826], [-8.151100829188692, 40.94217263317658], [-8.152897459756929, 40.94217263317658], [-8.152897459756929, 40.9430709484607], [-8.153795775041061, 40.9430709484607], [-8.153795775041061, 40.944867579028944], [-8.154694090325194, 40.944867579028944], [-8.154694090325194, 40.94576589431306], [-8.153795775041061, 40.94576589431306], [-8.153795775041061, 40.9475625248813], [-8.151100829188692, 40.9475625248813], [-8.151100829188692, 40.95025747073366], [-8.152897459756929, 40.95025747073366], [-8.152897459756929, 40.94935915544954], [-8.154694090325194, 40.94935915544954], [-8.154694090325194, 40.95025747073366], [-8.15649072089343, 40.95025747073366], [-8.15649072089343, 40.95115578601778], [-8.157389036177534, 40.95115578601778], [-8.157389036177534, 40.95025747073366], [-8.158287351461667, 40.95025747073366], [-8.158287351461667, 40.95115578601778], [-8.15918566674577, 40.95115578601778], [-8.15918566674577, 40.94935915544954], [-8.160083982029903, 40.94935915544954], [-8.160083982029903, 40.95025747073366], [-8.160982297314007, 40.95025747073366], [-8.160982297314007, 40.94935915544954], [-8.160083982029903, 40.94935915544954], [-8.160083982029903, 40.948460840165424], [-8.160982297314007, 40.948460840165424], [-8.160982297314007, 40.9475625248813], [-8.16188061259814, 40.9475625248813], [-8.16188061259814, 40.948460840165424], [-8.163677243166376, 40.948460840165424], [-8.163677243166376, 40.94935915544954], [-8.164575558450508, 40.94935915544954], [-8.164575558450508, 40.9475625248813], [-8.169067134871085, 40.9475625248813], [-8.169067134871085, 40.94666420959718], [-8.169965450155217, 40.94666420959718], [-8.169965450155217, 40.94576589431306], [-8.169067134871085, 40.94576589431306], [-8.169067134871085, 40.943969263744826], [-8.168168819586981, 40.943969263744826], [-8.168168819586981, 40.944867579028944], [-8.167270504302849, 40.944867579028944], [-8.167270504302849, 40.9430709484607], [-8.168168819586981, 40.9430709484607], [-8.168168819586981, 40.941274317892464], [-8.169965450155217, 40.941274317892464], [-8.169965450155217, 40.940376002608346], [-8.168168819586981, 40.940376002608346], [-8.168168819586981, 40.941274317892464], [-8.167270504302849, 40.941274317892464], [-8.167270504302849, 40.94217263317658], [-8.166372189018745, 40.94217263317658], [-8.166372189018745, 40.940376002608346], [-8.167270504302849, 40.940376002608346], [-8.167270504302849, 40.93947768732423], [-8.166372189018745, 40.93947768732423], [-8.166372189018745, 40.940376002608346], [-8.164575558450508, 40.940376002608346], [-8.164575558450508, 40.93947768732423], [-8.165473873734612, 40.93947768732423], [-8.165473873734612, 40.937681056755984], [-8.16188061259814, 40.937681056755984], [-8.16188061259814, 40.936782741471866], [-8.160982297314007, 40.936782741471866], [-8.160982297314007, 40.93408779561951], [-8.15918566674577, 40.93408779561951], [-8.15918566674577, 40.93498611090363], [-8.160083982029903, 40.93498611090363], [-8.160083982029903, 40.93588442618775], [-8.15918566674577, 40.93588442618775], [-8.15918566674577, 40.936782741471866], [-8.160083982029903, 40.936782741471866], [-8.160083982029903, 40.937681056755984], [-8.15918566674577, 40.937681056755984], [-8.15918566674577, 40.9385793720401], [-8.157389036177534, 40.9385793720401], [-8.157389036177534, 40.937681056755984], [-8.158287351461667, 40.937681056755984], [-8.158287351461667, 40.936782741471866], [-8.155592405609298, 40.936782741471866], [-8.155592405609298, 40.93588442618775], [-8.154694090325194, 40.93588442618775], [-8.154694090325194, 40.936782741471866], [-8.155592405609298, 40.936782741471866], [-8.155592405609298, 40.937681056755984], [-8.154694090325194, 40.937681056755984], [-8.154694090325194, 40.9385793720401], [-8.153795775041061, 40.9385793720401], [-8.153795775041061, 40.93947768732423], [-8.152897459756929, 40.93947768732423], [-8.152897459756929, 40.940376002608346], [-8.151999144472825, 40.940376002608346], [-8.151999144472825, 40.937681056755984], [-8.150202513904588, 40.937681056755984], [-8.150202513904588, 40.936782741471866], [-8.151100829188692, 40.936782741471866], [-8.151100829188692, 40.93588442618775], [-8.151999144472825, 40.93588442618775], [-8.151999144472825, 40.93498611090363], [-8.151100829188692, 40.93498611090363], [-8.151100829188692, 40.93229116505127], [-8.150202513904588, 40.93229116505127], [-8.150202513904588, 40.933189480335386], [-8.149304198620456, 40.933189480335386], [-8.149304198620456, 40.93229116505127], [-8.148405883336352, 40.93229116505127], [-8.148405883336352, 40.93139284976715]], [[-8.158287351461667, 40.948460840165424], [-8.158287351461667, 40.94935915544954], [-8.15918566674577, 40.94935915544954], [-8.15918566674577, 40.948460840165424], [-8.158287351461667, 40.948460840165424]], [[-8.154694090325194, 40.94576589431306], [-8.154694090325194, 40.94666420959718], [-8.155592405609298, 40.94666420959718], [-8.155592405609298, 40.948460840165424], [-8.15649072089343, 40.948460840165424], [-8.15649072089343, 40.94576589431306], [-8.154694090325194, 40.94576589431306]], [[-8.164575558450508, 40.944867579028944], [-8.164575558450508, 40.94576589431306], [-8.165473873734612, 40.94576589431306], [-8.165473873734612, 40.944867579028944], [-8.164575558450508, 40.944867579028944]], [[-8.14481262219988, 40.94935915544954], [-8.14481262219988, 40.95025747073366], [-8.145710937483983, 40.95025747073366], [-8.145710937483983, 40.94935915544954], [-8.14481262219988, 40.94935915544954]], [[-8.14481262219988, 40.9475625248813], [-8.14481262219988, 40.948460840165424], [-8.145710937483983, 40.948460840165424], [-8.145710937483983, 40.9475625248813], [-8.14481262219988, 40.9475625248813]], [[-8.134931154074565, 40.9520541013019], [-8.134931154074565, 40.95385073187014], [-8.135829469358669, 40.95385073187014], [-8.135829469358669, 40.952952416586015], [-8.137626099926905, 40.952952416586015], [-8.137626099926905, 40.9520541013019], [-8.134931154074565, 40.9520541013019]], [[-8.137626099926905, 40.95025747073366], [-8.137626099926905, 40.9520541013019], [-8.139422730495141, 40.9520541013019], [-8.139422730495141, 40.95025747073366], [-8.137626099926905, 40.95025747073366]], [[-8.135829469358669, 40.948460840165424], [-8.135829469358669, 40.94935915544954], [-8.136727784642801, 40.94935915544954], [-8.136727784642801, 40.948460840165424], [-8.135829469358669, 40.948460840165424]], [[-8.137626099926905, 40.94576589431306], [-8.137626099926905, 40.94666420959718], [-8.138524415211037, 40.94666420959718], [-8.138524415211037, 40.9475625248813], [-8.139422730495141, 40.9475625248813], [-8.139422730495141, 40.94576589431306], [-8.137626099926905, 40.94576589431306]], [[-8.135829469358669, 40.9430709484607], [-8.135829469358669, 40.943969263744826], [-8.137626099926905, 40.943969263744826], [-8.137626099926905, 40.9430709484607], [-8.135829469358669, 40.9430709484607]], [[-8.157389036177534, 40.94217263317658], [-8.157389036177534, 40.9430709484607], [-8.15918566674577, 40.9430709484607], [-8.15918566674577, 40.943969263744826], [-8.160083982029903, 40.943969263744826], [-8.160083982029903, 40.944867579028944], [-8.16188061259814, 40.944867579028944], [-8.16188061259814, 40.9430709484607], [-8.160982297314007, 40.9430709484607], [-8.160982297314007, 40.94217263317658], [-8.157389036177534, 40.94217263317658]], [[-8.160083982029903, 40.940376002608346], [-8.160083982029903, 40.941274317892464], [-8.160982297314007, 40.941274317892464], [-8.160982297314007, 40.940376002608346], [-8.160083982029903, 40.940376002608346]], [[-8.143914306915747, 40.940376002608346], [-8.143914306915747, 40.94217263317658], [-8.14481262219988, 40.94217263317658], [-8.14481262219988, 40.940376002608346], [-8.143914306915747, 40.940376002608346]], [[-8.160982297314007, 40.93947768732423], [-8.160982297314007, 40.940376002608346], [-8.16188061259814, 40.940376002608346], [-8.16188061259814, 40.93947768732423], [-8.160982297314007, 40.93947768732423]], [[-8.15649072089343, 40.93947768732423], [-8.15649072089343, 40.940376002608346], [-8.15918566674577, 40.940376002608346], [-8.15918566674577, 40.93947768732423], [-8.15649072089343, 40.93947768732423]], [[-8.143015991631614, 40.93947768732423], [-8.143015991631614, 40.940376002608346], [-8.143914306915747, 40.940376002608346], [-8.143914306915747, 40.93947768732423], [-8.143015991631614, 40.93947768732423]], [[-8.162778927882243, 40.9385793720401], [-8.162778927882243, 40.93947768732423], [-8.164575558450508, 40.93947768732423], [-8.164575558450508, 40.9385793720401], [-8.162778927882243, 40.9385793720401]], [[-8.154694090325194, 40.9385793720401], [-8.154694090325194, 40.93947768732423], [-8.155592405609298, 40.93947768732423], [-8.155592405609298, 40.9385793720401], [-8.154694090325194, 40.9385793720401]], [[-8.149304198620456, 40.9385793720401], [-8.149304198620456, 40.940376002608346], [-8.151100829188692, 40.940376002608346], [-8.151100829188692, 40.93947768732423], [-8.150202513904588, 40.93947768732423], [-8.150202513904588, 40.9385793720401], [-8.149304198620456, 40.9385793720401]], [[-8.14750756805222, 40.9385793720401], [-8.14750756805222, 40.93947768732423], [-8.148405883336352, 40.93947768732423], [-8.148405883336352, 40.9385793720401], [-8.14750756805222, 40.9385793720401]], [[-8.14211767634751, 40.9385793720401], [-8.14211767634751, 40.93947768732423], [-8.143015991631614, 40.93947768732423], [-8.143015991631614, 40.9385793720401], [-8.14211767634751, 40.9385793720401]], [[-8.155592405609298, 40.937681056755984], [-8.155592405609298, 40.9385793720401], [-8.15649072089343, 40.9385793720401], [-8.15649072089343, 40.937681056755984], [-8.155592405609298, 40.937681056755984]]]}, "id": "+191193+37924", "properties": {"count": 439, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.14750756805222, 40.96103725414309], [-8.146609252768116, 40.96103725414309], [-8.146609252768116, 40.96193556942721], [-8.14750756805222, 40.96193556942721], [-8.14750756805222, 40.96103725414309]]]}, "id": "+191194+37891", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.14750756805222, 40.95385073187014], [-8.146609252768116, 40.95385073187014], [-8.146609252768116, 40.95474904715426], [-8.14750756805222, 40.95474904715426], [-8.14750756805222, 40.95385073187014]]]}, "id": "+191194+37899", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.14750756805222, 40.94935915544954], [-8.146609252768116, 40.94935915544954], [-8.146609252768116, 40.95025747073366], [-8.14750756805222, 40.95025747073366], [-8.14750756805222, 40.94935915544954]]]}, "id": "+191194+37904", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.14750756805222, 40.9430709484607], [-8.146609252768116, 40.9430709484607], [-8.146609252768116, 40.943969263744826], [-8.14750756805222, 40.943969263744826], [-8.14750756805222, 40.9430709484607]]]}, "id": "+191194+37911", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.14750756805222, 40.93498611090363], [-8.146609252768116, 40.93498611090363], [-8.146609252768116, 40.93588442618775], [-8.14750756805222, 40.93588442618775], [-8.14750756805222, 40.93498611090363]]]}, "id": "+191194+37920", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.14750756805222, 40.93139284976715], [-8.146609252768116, 40.93139284976715], [-8.146609252768116, 40.933189480335386], [-8.148405883336352, 40.933189480335386], [-8.148405883336352, 40.93229116505127], [-8.14750756805222, 40.93229116505127], [-8.14750756805222, 40.93139284976715]]]}, "id": "+191194+37924", "properties": {"count": 3, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.148405883336352, 40.92959621919891], [-8.146609252768116, 40.92959621919891], [-8.146609252768116, 40.93049453448303], [-8.148405883336352, 40.93049453448303], [-8.148405883336352, 40.92959621919891]]]}, "id": "+191194+37926", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.14750756805222, 40.92779958863067], [-8.146609252768116, 40.92779958863067], [-8.146609252768116, 40.92869790391479], [-8.14750756805222, 40.92869790391479], [-8.14750756805222, 40.92779958863067]]]}, "id": "+191194+37928", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.146609252768116, 40.95744399300661], [-8.145710937483983, 40.95744399300661], [-8.145710937483983, 40.95834230829074], [-8.146609252768116, 40.95834230829074], [-8.146609252768116, 40.95744399300661]]]}, "id": "+191195+37895", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.146609252768116, 40.956545677722495], [-8.145710937483983, 40.956545677722495], [-8.145710937483983, 40.95744399300661], [-8.146609252768116, 40.95744399300661], [-8.146609252768116, 40.956545677722495]]]}, "id": "+191195+37896", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.146609252768116, 40.93408779561951], [-8.145710937483983, 40.93408779561951], [-8.145710937483983, 40.93498611090363], [-8.146609252768116, 40.93498611090363], [-8.146609252768116, 40.93408779561951]]]}, "id": "+191195+37921", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.145710937483983, 40.96103725414309], [-8.14481262219988, 40.96103725414309], [-8.14481262219988, 40.96193556942721], [-8.145710937483983, 40.96193556942721], [-8.145710937483983, 40.96103725414309]]]}, "id": "+191196+37891", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.145710937483983, 40.93408779561951], [-8.14481262219988, 40.93408779561951], [-8.14481262219988, 40.93588442618775], [-8.145710937483983, 40.93588442618775], [-8.145710937483983, 40.93408779561951]]]}, "id": "+191196+37921", "properties": {"count": 2, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.14481262219988, 40.95564736243838], [-8.143914306915747, 40.95564736243838], [-8.143914306915747, 40.956545677722495], [-8.14481262219988, 40.956545677722495], [-8.14481262219988, 40.95564736243838]]]}, "id": "+191197+37897", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.146609252768116, 40.952952416586015], [-8.143914306915747, 40.952952416586015], [-8.143914306915747, 40.95564736243838], [-8.145710937483983, 40.95564736243838], [-8.145710937483983, 40.956545677722495], [-8.148405883336352, 40.956545677722495], [-8.148405883336352, 40.95474904715426], [-8.149304198620456, 40.95474904715426], [-8.149304198620456, 40.95385073187014], [-8.14750756805222, 40.95385073187014], [-8.14750756805222, 40.95564736243838], [-8.145710937483983, 40.95564736243838], [-8.145710937483983, 40.95474904715426], [-8.146609252768116, 40.95474904715426], [-8.146609252768116, 40.952952416586015]]]}, "id": "+191197+37900", "properties": {"count": 14, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.145710937483983, 40.9430709484607], [-8.143914306915747, 40.9430709484607], [-8.143914306915747, 40.944867579028944], [-8.14481262219988, 40.944867579028944], [-8.14481262219988, 40.943969263744826], [-8.145710937483983, 40.943969263744826], [-8.145710937483983, 40.9430709484607]]]}, "id": "+191197+37911", "properties": {"count": 3, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.143914306915747, 40.95924062357486], [-8.143015991631614, 40.95924062357486], [-8.143015991631614, 40.960138938858975], [-8.14211767634751, 40.960138938858975], [-8.14211767634751, 40.96193556942721], [-8.143015991631614, 40.96193556942721], [-8.143015991631614, 40.960138938858975], [-8.143914306915747, 40.960138938858975], [-8.143914306915747, 40.96103725414309], [-8.14481262219988, 40.96103725414309], [-8.14481262219988, 40.960138938858975], [-8.143914306915747, 40.960138938858975], [-8.143914306915747, 40.95924062357486]]]}, "id": "+191198+37893", "properties": {"count": 4, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.143914306915747, 40.94935915544954], [-8.143015991631614, 40.94935915544954], [-8.143015991631614, 40.95025747073366], [-8.143914306915747, 40.95025747073366], [-8.143914306915747, 40.94935915544954]]]}, "id": "+191198+37904", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.145710937483983, 40.95744399300661], [-8.14211767634751, 40.95744399300661], [-8.14211767634751, 40.95834230829074], [-8.14481262219988, 40.95834230829074], [-8.14481262219988, 40.95924062357486], [-8.143914306915747, 40.95924062357486], [-8.143914306915747, 40.960138938858975], [-8.14481262219988, 40.960138938858975], [-8.14481262219988, 40.95924062357486], [-8.146609252768116, 40.95924062357486], [-8.146609252768116, 40.95834230829074], [-8.145710937483983, 40.95834230829074], [-8.145710937483983, 40.95744399300661]]]}, "id": "+191199+37895", "properties": {"count": 7, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.143015991631614, 40.95564736243838], [-8.14211767634751, 40.95564736243838], [-8.14211767634751, 40.95744399300661], [-8.14481262219988, 40.95744399300661], [-8.14481262219988, 40.956545677722495], [-8.143015991631614, 40.956545677722495], [-8.143015991631614, 40.95564736243838]]]}, "id": "+191199+37897", "properties": {"count": 4, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.143015991631614, 40.94576589431306], [-8.14211767634751, 40.94576589431306], [-8.14211767634751, 40.94666420959718], [-8.141219361063378, 40.94666420959718], [-8.141219361063378, 40.9475625248813], [-8.139422730495141, 40.9475625248813], [-8.139422730495141, 40.94935915544954], [-8.141219361063378, 40.94935915544954], [-8.141219361063378, 40.95025747073366], [-8.143015991631614, 40.95025747073366], [-8.143015991631614, 40.94576589431306]], [[-8.141219361063378, 40.9475625248813], [-8.141219361063378, 40.94935915544954], [-8.14211767634751, 40.94935915544954], [-8.14211767634751, 40.9475625248813], [-8.141219361063378, 40.9475625248813]]]}, "id": "+191199+37908", "properties": {"count": 11, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.143015991631614, 40.9385793720401], [-8.14211767634751, 40.9385793720401], [-8.14211767634751, 40.93947768732423], [-8.143015991631614, 40.93947768732423], [-8.143015991631614, 40.940376002608346], [-8.143914306915747, 40.940376002608346], [-8.143914306915747, 40.94217263317658], [-8.14481262219988, 40.94217263317658], [-8.14481262219988, 40.940376002608346], [-8.143914306915747, 40.940376002608346], [-8.143914306915747, 40.93947768732423], [-8.143015991631614, 40.93947768732423], [-8.143015991631614, 40.9385793720401]]]}, "id": "+191199+37916", "properties": {"count": 4, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.143015991631614, 40.93049453448303], [-8.14211767634751, 40.93049453448303], [-8.14211767634751, 40.93139284976715], [-8.143015991631614, 40.93139284976715], [-8.143015991631614, 40.93229116505127], [-8.143914306915747, 40.93229116505127], [-8.143914306915747, 40.933189480335386], [-8.146609252768116, 40.933189480335386], [-8.146609252768116, 40.93139284976715], [-8.143015991631614, 40.93139284976715], [-8.143015991631614, 40.93049453448303]]]}, "id": "+191199+37925", "properties": {"count": 8, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.143914306915747, 40.976308613973124], [-8.141219361063378, 40.976308613973124], [-8.141219361063378, 40.97720692925724], [-8.140321045779274, 40.97720692925724], [-8.140321045779274, 40.979003559825486], [-8.14211767634751, 40.979003559825486], [-8.14211767634751, 40.97720692925724], [-8.143015991631614, 40.97720692925724], [-8.143015991631614, 40.97810524454137], [-8.143914306915747, 40.97810524454137], [-8.143914306915747, 40.979003559825486], [-8.14481262219988, 40.979003559825486], [-8.14481262219988, 40.979901875109604], [-8.145710937483983, 40.979901875109604], [-8.145710937483983, 40.98080019039372], [-8.149304198620456, 40.98080019039372], [-8.149304198620456, 40.98169850567784], [-8.150202513904588, 40.98169850567784], [-8.150202513904588, 40.98080019039372], [-8.151100829188692, 40.98080019039372], [-8.151100829188692, 40.979901875109604], [-8.151999144472825, 40.979901875109604], [-8.151999144472825, 40.983495136246084], [-8.152897459756929, 40.983495136246084], [-8.152897459756929, 40.982596820961966], [-8.155592405609298, 40.982596820961966], [-8.155592405609298, 40.98080019039372], [-8.154694090325194, 40.98080019039372], [-8.154694090325194, 40.979901875109604], [-8.153795775041061, 40.979901875109604], [-8.153795775041061, 40.979003559825486], [-8.154694090325194, 40.979003559825486], [-8.154694090325194, 40.97810524454137], [-8.152897459756929, 40.97810524454137], [-8.152897459756929, 40.97720692925724], [-8.149304198620456, 40.97720692925724], [-8.149304198620456, 40.97810524454137], [-8.14750756805222, 40.97810524454137], [-8.14750756805222, 40.979003559825486], [-8.146609252768116, 40.979003559825486], [-8.146609252768116, 40.979901875109604], [-8.145710937483983, 40.979901875109604], [-8.145710937483983, 40.97720692925724], [-8.14481262219988, 40.97720692925724], [-8.14481262219988, 40.97810524454137], [-8.143914306915747, 40.97810524454137], [-8.143914306915747, 40.976308613973124]], [[-8.14750756805222, 40.979003559825486], [-8.14750756805222, 40.979901875109604], [-8.148405883336352, 40.979901875109604], [-8.148405883336352, 40.979003559825486], [-8.14750756805222, 40.979003559825486]], [[-8.149304198620456, 40.97810524454137], [-8.149304198620456, 40.979901875109604], [-8.151100829188692, 40.979901875109604], [-8.151100829188692, 40.979003559825486], [-8.150202513904588, 40.979003559825486], [-8.150202513904588, 40.97810524454137], [-8.149304198620456, 40.97810524454137]]]}, "id": "+191200+37874", "properties": {"count": 47, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.14211767634751, 40.96642714584781], [-8.141219361063378, 40.96642714584781], [-8.141219361063378, 40.96732546113193], [-8.14211767634751, 40.96732546113193], [-8.14211767634751, 40.96642714584781]]]}, "id": "+191200+37885", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.141219361063378, 40.975410298689006], [-8.140321045779274, 40.975410298689006], [-8.140321045779274, 40.97720692925724], [-8.141219361063378, 40.97720692925724], [-8.141219361063378, 40.975410298689006]]]}, "id": "+191201+37875", "properties": {"count": 2, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.141219361063378, 40.972715352836644], [-8.140321045779274, 40.972715352836644], [-8.140321045779274, 40.97361366812077], [-8.141219361063378, 40.97361366812077], [-8.141219361063378, 40.972715352836644]]]}, "id": "+191201+37878", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.141219361063378, 40.960138938858975], [-8.140321045779274, 40.960138938858975], [-8.140321045779274, 40.96103725414309], [-8.141219361063378, 40.96103725414309], [-8.141219361063378, 40.960138938858975]]]}, "id": "+191201+37892", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.141219361063378, 40.95834230829074], [-8.140321045779274, 40.95834230829074], [-8.140321045779274, 40.95924062357486], [-8.141219361063378, 40.95924062357486], [-8.141219361063378, 40.95834230829074]]]}, "id": "+191201+37894", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.141219361063378, 40.933189480335386], [-8.140321045779274, 40.933189480335386], [-8.140321045779274, 40.93408779561951], [-8.141219361063378, 40.93408779561951], [-8.141219361063378, 40.933189480335386]]]}, "id": "+191201+37922", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.141219361063378, 40.93229116505127], [-8.140321045779274, 40.93229116505127], [-8.140321045779274, 40.933189480335386], [-8.141219361063378, 40.933189480335386], [-8.141219361063378, 40.93229116505127]]]}, "id": "+191201+37923", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.140321045779274, 40.97720692925724], [-8.139422730495141, 40.97720692925724], [-8.139422730495141, 40.97810524454137], [-8.140321045779274, 40.97810524454137], [-8.140321045779274, 40.97720692925724]]]}, "id": "+191202+37873", "properties": {"count": 1, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.140321045779274, 40.97361366812077], [-8.139422730495141, 40.97361366812077], [-8.139422730495141, 40.97451198340489], [-8.140321045779274, 40.97451198340489], [-8.140321045779274, 40.97361366812077]]]}, "id": "+191202+37877", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.140321045779274, 40.972715352836644], [-8.139422730495141, 40.972715352836644], [-8.139422730495141, 40.97361366812077], [-8.140321045779274, 40.97361366812077], [-8.140321045779274, 40.97451198340489], [-8.139422730495141, 40.97451198340489], [-8.139422730495141, 40.975410298689006], [-8.140321045779274, 40.975410298689006], [-8.140321045779274, 40.97451198340489], [-8.141219361063378, 40.97451198340489], [-8.141219361063378, 40.97361366812077], [-8.140321045779274, 40.97361366812077], [-8.140321045779274, 40.972715352836644]]]}, "id": "+191202+37878", "properties": {"count": 3, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.140321045779274, 40.9520541013019], [-8.139422730495141, 40.9520541013019], [-8.139422730495141, 40.952952416586015], [-8.140321045779274, 40.952952416586015], [-8.140321045779274, 40.9520541013019]]]}, "id": "+191202+37901", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.139422730495141, 40.97810524454137], [-8.138524415211037, 40.97810524454137], [-8.138524415211037, 40.979003559825486], [-8.139422730495141, 40.979003559825486], [-8.139422730495141, 40.97810524454137]]]}, "id": "+191203+37872", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.139422730495141, 40.97451198340489], [-8.138524415211037, 40.97451198340489], [-8.138524415211037, 40.975410298689006], [-8.139422730495141, 40.975410298689006], [-8.139422730495141, 40.97451198340489]]]}, "id": "+191203+37876", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.139422730495141, 40.93498611090363], [-8.138524415211037, 40.93498611090363], [-8.138524415211037, 40.93588442618775], [-8.139422730495141, 40.93588442618775], [-8.139422730495141, 40.93498611090363]]]}, "id": "+191203+37920", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.138524415211037, 40.975410298689006], [-8.137626099926905, 40.975410298689006], [-8.137626099926905, 40.97720692925724], [-8.138524415211037, 40.97720692925724], [-8.138524415211037, 40.975410298689006]]]}, "id": "+191204+37875", "properties": {"count": 2, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.139422730495141, 40.95025747073366], [-8.137626099926905, 40.95025747073366], [-8.137626099926905, 40.9520541013019], [-8.136727784642801, 40.9520541013019], [-8.136727784642801, 40.952952416586015], [-8.137626099926905, 40.952952416586015], [-8.137626099926905, 40.9520541013019], [-8.138524415211037, 40.9520541013019], [-8.138524415211037, 40.95115578601778], [-8.139422730495141, 40.95115578601778], [-8.139422730495141, 40.95025747073366]]]}, "id": "+191204+37903", "properties": {"count": 4, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.137626099926905, 40.971817037552526], [-8.136727784642801, 40.971817037552526], [-8.136727784642801, 40.972715352836644], [-8.137626099926905, 40.972715352836644], [-8.137626099926905, 40.971817037552526]]]}, "id": "+191205+37879", "properties": {"count": 1, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.137626099926905, 40.95924062357486], [-8.136727784642801, 40.95924062357486], [-8.136727784642801, 40.960138938858975], [-8.137626099926905, 40.960138938858975], [-8.137626099926905, 40.96103725414309], [-8.136727784642801, 40.96103725414309], [-8.136727784642801, 40.96193556942721], [-8.135829469358669, 40.96193556942721], [-8.135829469358669, 40.96283388471133], [-8.136727784642801, 40.96283388471133], [-8.136727784642801, 40.963732199995455], [-8.137626099926905, 40.963732199995455], [-8.137626099926905, 40.96103725414309], [-8.138524415211037, 40.96103725414309], [-8.138524415211037, 40.960138938858975], [-8.137626099926905, 40.960138938858975], [-8.137626099926905, 40.95924062357486]]]}, "id": "+191205+37893", "properties": {"count": 6, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.137626099926905, 40.9430709484607], [-8.136727784642801, 40.9430709484607], [-8.136727784642801, 40.943969263744826], [-8.137626099926905, 40.943969263744826], [-8.137626099926905, 40.9430709484607]]]}, "id": "+191205+37911", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.137626099926905, 40.92690127334655], [-8.136727784642801, 40.92690127334655], [-8.136727784642801, 40.92779958863067], [-8.137626099926905, 40.92779958863067], [-8.137626099926905, 40.92869790391479], [-8.140321045779274, 40.92869790391479], [-8.140321045779274, 40.92779958863067], [-8.137626099926905, 40.92779958863067], [-8.137626099926905, 40.92690127334655]]]}, "id": "+191205+37929", "properties": {"count": 4, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.136727784642801, 40.97451198340489], [-8.135829469358669, 40.97451198340489], [-8.135829469358669, 40.975410298689006], [-8.136727784642801, 40.975410298689006], [-8.136727784642801, 40.97451198340489]]]}, "id": "+191206+37876", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.137626099926905, 40.97361366812077], [-8.135829469358669, 40.97361366812077], [-8.135829469358669, 40.97451198340489], [-8.134931154074565, 40.97451198340489], [-8.134931154074565, 40.975410298689006], [-8.135829469358669, 40.975410298689006], [-8.135829469358669, 40.97451198340489], [-8.137626099926905, 40.97451198340489], [-8.137626099926905, 40.97361366812077]]]}, "id": "+191206+37877", "properties": {"count": 3, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.136727784642801, 40.971817037552526], [-8.135829469358669, 40.971817037552526], [-8.135829469358669, 40.972715352836644], [-8.136727784642801, 40.972715352836644], [-8.136727784642801, 40.97361366812077], [-8.138524415211037, 40.97361366812077], [-8.138524415211037, 40.972715352836644], [-8.136727784642801, 40.972715352836644], [-8.136727784642801, 40.971817037552526]]]}, "id": "+191206+37879", "properties": {"count": 3, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.135829469358669, 40.960138938858975], [-8.134931154074565, 40.960138938858975], [-8.134931154074565, 40.96193556942721], [-8.136727784642801, 40.96193556942721], [-8.136727784642801, 40.96103725414309], [-8.135829469358669, 40.96103725414309], [-8.135829469358669, 40.960138938858975]]]}, "id": "+191207+37892", "properties": {"count": 3, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.136727784642801, 40.9520541013019], [-8.134931154074565, 40.9520541013019], [-8.134931154074565, 40.952952416586015], [-8.136727784642801, 40.952952416586015], [-8.136727784642801, 40.9520541013019]]]}, "id": "+191207+37901", "properties": {"count": 2, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.136727784642801, 40.940376002608346], [-8.134931154074565, 40.940376002608346], [-8.134931154074565, 40.941274317892464], [-8.135829469358669, 40.941274317892464], [-8.135829469358669, 40.94217263317658], [-8.136727784642801, 40.94217263317658], [-8.136727784642801, 40.940376002608346]]]}, "id": "+191207+37914", "properties": {"count": 3, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.137626099926905, 40.92779958863067], [-8.134931154074565, 40.92779958863067], [-8.134931154074565, 40.92959621919891], [-8.135829469358669, 40.92959621919891], [-8.135829469358669, 40.93049453448303], [-8.137626099926905, 40.93049453448303], [-8.137626099926905, 40.93229116505127], [-8.136727784642801, 40.93229116505127], [-8.136727784642801, 40.93408779561951], [-8.137626099926905, 40.93408779561951], [-8.137626099926905, 40.93229116505127], [-8.138524415211037, 40.93229116505127], [-8.138524415211037, 40.93049453448303], [-8.139422730495141, 40.93049453448303], [-8.139422730495141, 40.92869790391479], [-8.137626099926905, 40.92869790391479], [-8.137626099926905, 40.92779958863067]]]}, "id": "+191207+37928", "properties": {"count": 16, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.135829469358669, 40.92690127334655], [-8.134931154074565, 40.92690127334655], [-8.134931154074565, 40.92779958863067], [-8.1331345235063, 40.92779958863067], [-8.1331345235063, 40.92959621919891], [-8.134931154074565, 40.92959621919891], [-8.134931154074565, 40.92779958863067], [-8.135829469358669, 40.92779958863067], [-8.135829469358669, 40.92690127334655]]]}, "id": "+191207+37929", "properties": {"count": 5, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.134931154074565, 40.97091872226841], [-8.134032838790432, 40.97091872226841], [-8.134032838790432, 40.971817037552526], [-8.134931154074565, 40.971817037552526], [-8.134931154074565, 40.97091872226841]]]}, "id": "+191208+37880", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.134931154074565, 40.96283388471133], [-8.134032838790432, 40.96283388471133], [-8.134032838790432, 40.963732199995455], [-8.134931154074565, 40.963732199995455], [-8.134931154074565, 40.96283388471133]]]}, "id": "+191208+37889", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.134032838790432, 40.976308613973124], [-8.1331345235063, 40.976308613973124], [-8.1331345235063, 40.97720692925724], [-8.134032838790432, 40.97720692925724], [-8.134032838790432, 40.976308613973124]]]}, "id": "+191209+37874", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.134931154074565, 40.963732199995455], [-8.1331345235063, 40.963732199995455], [-8.1331345235063, 40.96463051527957], [-8.134931154074565, 40.96463051527957], [-8.134931154074565, 40.963732199995455]]]}, "id": "+191209+37888", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.134931154074565, 40.94217263317658], [-8.1331345235063, 40.94217263317658], [-8.1331345235063, 40.9430709484607], [-8.134931154074565, 40.9430709484607], [-8.134931154074565, 40.94217263317658]]]}, "id": "+191209+37912", "properties": {"count": 2, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.134931154074565, 40.941274317892464], [-8.1331345235063, 40.941274317892464], [-8.1331345235063, 40.94217263317658], [-8.134931154074565, 40.94217263317658], [-8.134931154074565, 40.941274317892464]]]}, "id": "+191209+37913", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.134032838790432, 40.93947768732423], [-8.1331345235063, 40.93947768732423], [-8.1331345235063, 40.940376002608346], [-8.134032838790432, 40.940376002608346], [-8.134032838790432, 40.93947768732423]]]}, "id": "+191209+37915", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.134032838790432, 40.93229116505127], [-8.1331345235063, 40.93229116505127], [-8.1331345235063, 40.933189480335386], [-8.134032838790432, 40.933189480335386], [-8.134032838790432, 40.93229116505127]]]}, "id": "+191209+37923", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.1331345235063, 40.96822377641605], [-8.132236208222196, 40.96822377641605], [-8.132236208222196, 40.96912209170017], [-8.1331345235063, 40.96912209170017], [-8.1331345235063, 40.96822377641605]]]}, "id": "+191210+37883", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.1331345235063, 40.96283388471133], [-8.132236208222196, 40.96283388471133], [-8.132236208222196, 40.963732199995455], [-8.1331345235063, 40.963732199995455], [-8.1331345235063, 40.96283388471133]]]}, "id": "+191210+37889", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.1331345235063, 40.960138938858975], [-8.132236208222196, 40.960138938858975], [-8.132236208222196, 40.96193556942721], [-8.134931154074565, 40.96193556942721], [-8.134931154074565, 40.960138938858975], [-8.134032838790432, 40.960138938858975], [-8.134032838790432, 40.96103725414309], [-8.1331345235063, 40.96103725414309], [-8.1331345235063, 40.960138938858975]]]}, "id": "+191210+37892", "properties": {"count": 5, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.134032838790432, 40.944867579028944], [-8.132236208222196, 40.944867579028944], [-8.132236208222196, 40.94576589431306], [-8.134032838790432, 40.94576589431306], [-8.134032838790432, 40.944867579028944]]]}, "id": "+191210+37909", "properties": {"count": 2, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.1331345235063, 40.93498611090363], [-8.132236208222196, 40.93498611090363], [-8.132236208222196, 40.937681056755984], [-8.1331345235063, 40.937681056755984], [-8.1331345235063, 40.93498611090363]]]}, "id": "+191210+37920", "properties": {"count": 3, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.132236208222196, 40.97810524454137], [-8.131337892938063, 40.97810524454137], [-8.131337892938063, 40.979901875109604], [-8.129541262369827, 40.979901875109604], [-8.129541262369827, 40.98080019039372], [-8.131337892938063, 40.98080019039372], [-8.131337892938063, 40.979901875109604], [-8.132236208222196, 40.979901875109604], [-8.132236208222196, 40.97810524454137]]]}, "id": "+191211+37872", "properties": {"count": 4, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.134931154074565, 40.94576589431306], [-8.131337892938063, 40.94576589431306], [-8.131337892938063, 40.94666420959718], [-8.132236208222196, 40.94666420959718], [-8.132236208222196, 40.9475625248813], [-8.131337892938063, 40.9475625248813], [-8.131337892938063, 40.94935915544954], [-8.132236208222196, 40.94935915544954], [-8.132236208222196, 40.9475625248813], [-8.1331345235063, 40.9475625248813], [-8.1331345235063, 40.94666420959718], [-8.134931154074565, 40.94666420959718], [-8.134931154074565, 40.94576589431306]]]}, "id": "+191211+37908", "properties": {"count": 7, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.132236208222196, 40.93588442618775], [-8.131337892938063, 40.93588442618775], [-8.131337892938063, 40.9385793720401], [-8.132236208222196, 40.9385793720401], [-8.132236208222196, 40.93588442618775]]]}, "id": "+191211+37919", "properties": {"count": 3, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.1331345235063, 40.92779958863067], [-8.131337892938063, 40.92779958863067], [-8.131337892938063, 40.92869790391479], [-8.1331345235063, 40.92869790391479], [-8.1331345235063, 40.92779958863067]]]}, "id": "+191211+37928", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.131337892938063, 40.96732546113193], [-8.13043957765396, 40.96732546113193], [-8.13043957765396, 40.96822377641605], [-8.131337892938063, 40.96822377641605], [-8.131337892938063, 40.96732546113193]]]}, "id": "+191212+37884", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.131337892938063, 40.96283388471133], [-8.13043957765396, 40.96283388471133], [-8.13043957765396, 40.963732199995455], [-8.131337892938063, 40.963732199995455], [-8.131337892938063, 40.96283388471133]]]}, "id": "+191212+37889", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.131337892938063, 40.9520541013019], [-8.13043957765396, 40.9520541013019], [-8.13043957765396, 40.95385073187014], [-8.131337892938063, 40.95385073187014], [-8.131337892938063, 40.9520541013019]]]}, "id": "+191212+37901", "properties": {"count": 2, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.131337892938063, 40.93588442618775], [-8.13043957765396, 40.93588442618775], [-8.13043957765396, 40.936782741471866], [-8.131337892938063, 40.936782741471866], [-8.131337892938063, 40.93588442618775]]]}, "id": "+191212+37919", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.132236208222196, 40.93139284976715], [-8.13043957765396, 40.93139284976715], [-8.13043957765396, 40.93229116505127], [-8.131337892938063, 40.93229116505127], [-8.131337892938063, 40.933189480335386], [-8.132236208222196, 40.933189480335386], [-8.132236208222196, 40.93139284976715]]]}, "id": "+191212+37924", "properties": {"count": 3, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.13043957765396, 40.97451198340489], [-8.129541262369827, 40.97451198340489], [-8.129541262369827, 40.975410298689006], [-8.13043957765396, 40.975410298689006], [-8.13043957765396, 40.97451198340489]]]}, "id": "+191213+37876", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.13043957765396, 40.96463051527957], [-8.129541262369827, 40.96463051527957], [-8.129541262369827, 40.96552883056369], [-8.13043957765396, 40.96552883056369], [-8.13043957765396, 40.96463051527957]]]}, "id": "+191213+37887", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.13043957765396, 40.95564736243838], [-8.129541262369827, 40.95564736243838], [-8.129541262369827, 40.95744399300661], [-8.13043957765396, 40.95744399300661], [-8.13043957765396, 40.95564736243838]]]}, "id": "+191213+37897", "properties": {"count": 2, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.13043957765396, 40.95115578601778], [-8.129541262369827, 40.95115578601778], [-8.129541262369827, 40.9520541013019], [-8.13043957765396, 40.9520541013019], [-8.13043957765396, 40.95115578601778]]]}, "id": "+191213+37902", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.129541262369827, 40.96283388471133], [-8.128642947085723, 40.96283388471133], [-8.128642947085723, 40.963732199995455], [-8.129541262369827, 40.963732199995455], [-8.129541262369827, 40.96283388471133]]]}, "id": "+191214+37889", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.129541262369827, 40.93229116505127], [-8.128642947085723, 40.93229116505127], [-8.128642947085723, 40.933189480335386], [-8.129541262369827, 40.933189480335386], [-8.129541262369827, 40.93229116505127]]]}, "id": "+191214+37923", "properties": {"count": 1, "label": 12}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.128642947085723, 40.97810524454137], [-8.12774463180159, 40.97810524454137], [-8.12774463180159, 40.979003559825486], [-8.128642947085723, 40.979003559825486], [-8.128642947085723, 40.97810524454137]]]}, "id": "+191215+37872", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.128642947085723, 40.976308613973124], [-8.12774463180159, 40.976308613973124], [-8.12774463180159, 40.97810524454137], [-8.128642947085723, 40.97810524454137], [-8.128642947085723, 40.979003559825486], [-8.12774463180159, 40.979003559825486], [-8.12774463180159, 40.979901875109604], [-8.125948001233354, 40.979901875109604], [-8.125948001233354, 40.97720692925724], [-8.12504968594925, 40.97720692925724], [-8.12504968594925, 40.97810524454137], [-8.123253055380985, 40.97810524454137], [-8.123253055380985, 40.97720692925724], [-8.119659794244512, 40.97720692925724], [-8.119659794244512, 40.97810524454137], [-8.123253055380985, 40.97810524454137], [-8.123253055380985, 40.979901875109604], [-8.124151370665118, 40.979901875109604], [-8.124151370665118, 40.98080019039372], [-8.12504968594925, 40.98080019039372], [-8.12504968594925, 40.979901875109604], [-8.125948001233354, 40.979901875109604], [-8.125948001233354, 40.98169850567784], [-8.12774463180159, 40.98169850567784], [-8.12774463180159, 40.979901875109604], [-8.128642947085723, 40.979901875109604], [-8.128642947085723, 40.979003559825486], [-8.13043957765396, 40.979003559825486], [-8.13043957765396, 40.979901875109604], [-8.131337892938063, 40.979901875109604], [-8.131337892938063, 40.97810524454137], [-8.132236208222196, 40.97810524454137], [-8.132236208222196, 40.979003559825486], [-8.1331345235063, 40.979003559825486], [-8.1331345235063, 40.97720692925724], [-8.128642947085723, 40.97720692925724], [-8.128642947085723, 40.976308613973124]], [[-8.124151370665118, 40.979003559825486], [-8.124151370665118, 40.979901875109604], [-8.12504968594925, 40.979901875109604], [-8.12504968594925, 40.979003559825486], [-8.124151370665118, 40.979003559825486]]]}, "id": "+191215+37874", "properties": {"count": 28, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.128642947085723, 40.956545677722495], [-8.12774463180159, 40.956545677722495], [-8.12774463180159, 40.95744399300661], [-8.128642947085723, 40.95744399300661], [-8.128642947085723, 40.956545677722495]]]}, "id": "+191215+37896", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.13043957765396, 40.952952416586015], [-8.12774463180159, 40.952952416586015], [-8.12774463180159, 40.95385073187014], [-8.126846316517486, 40.95385073187014], [-8.126846316517486, 40.95474904715426], [-8.12774463180159, 40.95474904715426], [-8.12774463180159, 40.95564736243838], [-8.129541262369827, 40.95564736243838], [-8.129541262369827, 40.95474904715426], [-8.13043957765396, 40.95474904715426], [-8.13043957765396, 40.956545677722495], [-8.132236208222196, 40.956545677722495], [-8.132236208222196, 40.95744399300661], [-8.1331345235063, 40.95744399300661], [-8.1331345235063, 40.95385073187014], [-8.131337892938063, 40.95385073187014], [-8.131337892938063, 40.95474904715426], [-8.13043957765396, 40.95474904715426], [-8.13043957765396, 40.952952416586015]]]}, "id": "+191215+37900", "properties": {"count": 18, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.128642947085723, 40.93049453448303], [-8.12774463180159, 40.93049453448303], [-8.12774463180159, 40.93139284976715], [-8.128642947085723, 40.93139284976715], [-8.128642947085723, 40.93049453448303]]]}, "id": "+191215+37925", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.12774463180159, 40.979003559825486], [-8.126846316517486, 40.979003559825486], [-8.126846316517486, 40.979901875109604], [-8.12774463180159, 40.979901875109604], [-8.12774463180159, 40.979003559825486]]]}, "id": "+191216+37871", "properties": {"count": 1, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.12774463180159, 40.97361366812077], [-8.126846316517486, 40.97361366812077], [-8.126846316517486, 40.97451198340489], [-8.12774463180159, 40.97451198340489], [-8.12774463180159, 40.975410298689006], [-8.128642947085723, 40.975410298689006], [-8.128642947085723, 40.97451198340489], [-8.12774463180159, 40.97451198340489], [-8.12774463180159, 40.97361366812077]]]}, "id": "+191216+37877", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.12774463180159, 40.96463051527957], [-8.126846316517486, 40.96463051527957], [-8.126846316517486, 40.96642714584781], [-8.12774463180159, 40.96642714584781], [-8.12774463180159, 40.96822377641605], [-8.129541262369827, 40.96822377641605], [-8.129541262369827, 40.96732546113193], [-8.128642947085723, 40.96732546113193], [-8.128642947085723, 40.96642714584781], [-8.12774463180159, 40.96642714584781], [-8.12774463180159, 40.96463051527957]]]}, "id": "+191216+37887", "properties": {"count": 5, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.13043957765396, 40.9520541013019], [-8.126846316517486, 40.9520541013019], [-8.126846316517486, 40.95385073187014], [-8.12774463180159, 40.95385073187014], [-8.12774463180159, 40.952952416586015], [-8.13043957765396, 40.952952416586015], [-8.13043957765396, 40.9520541013019]]]}, "id": "+191216+37901", "properties": {"count": 5, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.126846316517486, 40.975410298689006], [-8.125948001233354, 40.975410298689006], [-8.125948001233354, 40.976308613973124], [-8.126846316517486, 40.976308613973124], [-8.126846316517486, 40.975410298689006]]]}, "id": "+191217+37875", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.126846316517486, 40.956545677722495], [-8.125948001233354, 40.956545677722495], [-8.125948001233354, 40.95834230829074], [-8.126846316517486, 40.95834230829074], [-8.126846316517486, 40.956545677722495]]]}, "id": "+191217+37896", "properties": {"count": 2, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.125948001233354, 40.96822377641605], [-8.12504968594925, 40.96822377641605], [-8.12504968594925, 40.96912209170017], [-8.125948001233354, 40.96912209170017], [-8.125948001233354, 40.96822377641605]]]}, "id": "+191218+37883", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.125948001233354, 40.952952416586015], [-8.12504968594925, 40.952952416586015], [-8.12504968594925, 40.95385073187014], [-8.125948001233354, 40.95385073187014], [-8.125948001233354, 40.952952416586015]]]}, "id": "+191218+37900", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.12504968594925, 40.95924062357486], [-8.124151370665118, 40.95924062357486], [-8.124151370665118, 40.960138938858975], [-8.12504968594925, 40.960138938858975], [-8.12504968594925, 40.95924062357486]]]}, "id": "+191219+37893", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.125948001233354, 40.956545677722495], [-8.124151370665118, 40.956545677722495], [-8.124151370665118, 40.95744399300661], [-8.125948001233354, 40.95744399300661], [-8.125948001233354, 40.956545677722495]]]}, "id": "+191219+37896", "properties": {"count": 2, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.124151370665118, 40.98529176681432], [-8.123253055380985, 40.98529176681432], [-8.123253055380985, 40.98619008209844], [-8.124151370665118, 40.98619008209844], [-8.124151370665118, 40.98529176681432]]]}, "id": "+191220+37864", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.124151370665118, 40.96912209170017], [-8.123253055380985, 40.96912209170017], [-8.123253055380985, 40.97002040698429], [-8.122354740096881, 40.97002040698429], [-8.122354740096881, 40.97091872226841], [-8.12774463180159, 40.97091872226841], [-8.12774463180159, 40.96912209170017], [-8.12504968594925, 40.96912209170017], [-8.12504968594925, 40.97002040698429], [-8.124151370665118, 40.97002040698429], [-8.124151370665118, 40.96912209170017]]]}, "id": "+191220+37882", "properties": {"count": 10, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.124151370665118, 40.96822377641605], [-8.123253055380985, 40.96822377641605], [-8.123253055380985, 40.96912209170017], [-8.124151370665118, 40.96912209170017], [-8.124151370665118, 40.96822377641605]]]}, "id": "+191220+37883", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.12504968594925, 40.95385073187014], [-8.123253055380985, 40.95385073187014], [-8.123253055380985, 40.95474904715426], [-8.122354740096881, 40.95474904715426], [-8.122354740096881, 40.95564736243838], [-8.121456424812749, 40.95564736243838], [-8.121456424812749, 40.956545677722495], [-8.120558109528645, 40.956545677722495], [-8.120558109528645, 40.95834230829074], [-8.119659794244512, 40.95834230829074], [-8.119659794244512, 40.96193556942721], [-8.120558109528645, 40.96193556942721], [-8.120558109528645, 40.96283388471133], [-8.119659794244512, 40.96283388471133], [-8.119659794244512, 40.96463051527957], [-8.122354740096881, 40.96463051527957], [-8.122354740096881, 40.96552883056369], [-8.124151370665118, 40.96552883056369], [-8.124151370665118, 40.96822377641605], [-8.125948001233354, 40.96822377641605], [-8.125948001233354, 40.96912209170017], [-8.12774463180159, 40.96912209170017], [-8.12774463180159, 40.97091872226841], [-8.124151370665118, 40.97091872226841], [-8.124151370665118, 40.971817037552526], [-8.123253055380985, 40.971817037552526], [-8.123253055380985, 40.97091872226841], [-8.122354740096881, 40.97091872226841], [-8.122354740096881, 40.971817037552526], [-8.120558109528645, 40.971817037552526], [-8.120558109528645, 40.97002040698429], [-8.119659794244512, 40.97002040698429], [-8.119659794244512, 40.96912209170017], [-8.121456424812749, 40.96912209170017], [-8.121456424812749, 40.96732546113193], [-8.119659794244512, 40.96732546113193], [-8.119659794244512, 40.96822377641605], [-8.11606653310804, 40.96822377641605], [-8.11606653310804, 40.96732546113193], [-8.118761478960408, 40.96732546113193], [-8.118761478960408, 40.96642714584781], [-8.115168217823935, 40.96642714584781], [-8.115168217823935, 40.96732546113193], [-8.114269902539803, 40.96732546113193], [-8.114269902539803, 40.96822377641605], [-8.11337158725567, 40.96822377641605], [-8.11337158725567, 40.96912209170017], [-8.112473271971567, 40.96912209170017], [-8.112473271971567, 40.96822377641605], [-8.111574956687434, 40.96822377641605], [-8.111574956687434, 40.96912209170017], [-8.11067664140333, 40.96912209170017], [-8.11067664140333, 40.97002040698429], [-8.108880010835094, 40.97002040698429], [-8.108880010835094, 40.97091872226841], [-8.107981695550961, 40.97091872226841], [-8.107981695550961, 40.971817037552526], [-8.11067664140333, 40.971817037552526], [-8.11067664140333, 40.972715352836644], [-8.109778326119198, 40.972715352836644], [-8.109778326119198, 40.97361366812077], [-8.108880010835094, 40.97361366812077], [-8.108880010835094, 40.97451198340489], [-8.107981695550961, 40.97451198340489], [-8.107981695550961, 40.97361366812077], [-8.106185064982725, 40.97361366812077], [-8.106185064982725, 40.972715352836644], [-8.105286749698621, 40.972715352836644], [-8.105286749698621, 40.97361366812077], [-8.104388434414489, 40.97361366812077], [-8.104388434414489, 40.97451198340489], [-8.103490119130356, 40.97451198340489], [-8.103490119130356, 40.97361366812077], [-8.10169348856212, 40.97361366812077], [-8.10169348856212, 40.97451198340489], [-8.100795173278016, 40.97451198340489], [-8.100795173278016, 40.975410298689006], [-8.10169348856212, 40.975410298689006], [-8.10169348856212, 40.97810524454137], [-8.102591803846252, 40.97810524454137], [-8.102591803846252, 40.979003559825486], [-8.10169348856212, 40.979003559825486], [-8.10169348856212, 40.98169850567784], [-8.100795173278016, 40.98169850567784], [-8.100795173278016, 40.983495136246084], [-8.102591803846252, 40.983495136246084], [-8.102591803846252, 40.982596820961966], [-8.10169348856212, 40.982596820961966], [-8.10169348856212, 40.98169850567784], [-8.102591803846252, 40.98169850567784], [-8.102591803846252, 40.979901875109604], [-8.103490119130356, 40.979901875109604], [-8.103490119130356, 40.979003559825486], [-8.105286749698621, 40.979003559825486], [-8.105286749698621, 40.979901875109604], [-8.107083380266857, 40.979901875109604], [-8.107083380266857, 40.98080019039372], [-8.109778326119198, 40.98080019039372], [-8.109778326119198, 40.979003559825486], [-8.112473271971567, 40.979003559825486], [-8.112473271971567, 40.97720692925724], [-8.111574956687434, 40.97720692925724], [-8.111574956687434, 40.976308613973124], [-8.109778326119198, 40.976308613973124], [-8.109778326119198, 40.97451198340489], [-8.11067664140333, 40.97451198340489], [-8.11067664140333, 40.972715352836644], [-8.111574956687434, 40.972715352836644], [-8.111574956687434, 40.975410298689006], [-8.11337158725567, 40.975410298689006], [-8.11337158725567, 40.972715352836644], [-8.114269902539803, 40.972715352836644], [-8.114269902539803, 40.971817037552526], [-8.11337158725567, 40.971817037552526], [-8.11337158725567, 40.97091872226841], [-8.11606653310804, 40.97091872226841], [-8.11606653310804, 40.972715352836644], [-8.117863163676276, 40.972715352836644], [-8.117863163676276, 40.97002040698429], [-8.118761478960408, 40.97002040698429], [-8.118761478960408, 40.97091872226841], [-8.119659794244512, 40.97091872226841], [-8.119659794244512, 40.972715352836644], [-8.120558109528645, 40.972715352836644], [-8.120558109528645, 40.97361366812077], [-8.123253055380985, 40.97361366812077], [-8.123253055380985, 40.97451198340489], [-8.122354740096881, 40.97451198340489], [-8.122354740096881, 40.975410298689006], [-8.123253055380985, 40.975410298689006], [-8.123253055380985, 40.976308613973124], [-8.124151370665118, 40.976308613973124], [-8.124151370665118, 40.975410298689006], [-8.123253055380985, 40.975410298689006], [-8.123253055380985, 40.97451198340489], [-8.124151370665118, 40.97451198340489], [-8.124151370665118, 40.97361366812077], [-8.12504968594925, 40.97361366812077], [-8.12504968594925, 40.971817037552526], [-8.12774463180159, 40.971817037552526], [-8.12774463180159, 40.972715352836644], [-8.129541262369827, 40.972715352836644], [-8.129541262369827, 40.971817037552526], [-8.13043957765396, 40.971817037552526], [-8.13043957765396, 40.97002040698429], [-8.131337892938063, 40.97002040698429], [-8.131337892938063, 40.97091872226841], [-8.1331345235063, 40.97091872226841], [-8.1331345235063, 40.971817037552526], [-8.134032838790432, 40.971817037552526], [-8.134032838790432, 40.97091872226841], [-8.135829469358669, 40.97091872226841], [-8.135829469358669, 40.97002040698429], [-8.137626099926905, 40.97002040698429], [-8.137626099926905, 40.96912209170017], [-8.135829469358669, 40.96912209170017], [-8.135829469358669, 40.96822377641605], [-8.1331345235063, 40.96822377641605], [-8.1331345235063, 40.96732546113193], [-8.134931154074565, 40.96732546113193], [-8.134931154074565, 40.96642714584781], [-8.1331345235063, 40.96642714584781], [-8.1331345235063, 40.96732546113193], [-8.131337892938063, 40.96732546113193], [-8.131337892938063, 40.963732199995455], [-8.13043957765396, 40.963732199995455], [-8.13043957765396, 40.96193556942721], [-8.132236208222196, 40.96193556942721], [-8.132236208222196, 40.960138938858975], [-8.13043957765396, 40.960138938858975], [-8.13043957765396, 40.96193556942721], [-8.12504968594925, 40.96193556942721], [-8.12504968594925, 40.96103725414309], [-8.124151370665118, 40.96103725414309], [-8.124151370665118, 40.96193556942721], [-8.120558109528645, 40.96193556942721], [-8.120558109528645, 40.96103725414309], [-8.121456424812749, 40.96103725414309], [-8.121456424812749, 40.95744399300661], [-8.122354740096881, 40.95744399300661], [-8.122354740096881, 40.95834230829074], [-8.123253055380985, 40.95834230829074], [-8.123253055380985, 40.95744399300661], [-8.124151370665118, 40.95744399300661], [-8.124151370665118, 40.956545677722495], [-8.126846316517486, 40.956545677722495], [-8.126846316517486, 40.95834230829074], [-8.125948001233354, 40.95834230829074], [-8.125948001233354, 40.95924062357486], [-8.126846316517486, 40.95924062357486], [-8.126846316517486, 40.95834230829074], [-8.12774463180159, 40.95834230829074], [-8.12774463180159, 40.956545677722495], [-8.129541262369827, 40.956545677722495], [-8.129541262369827, 40.95564736243838], [-8.13043957765396, 40.95564736243838], [-8.13043957765396, 40.95474904715426], [-8.129541262369827, 40.95474904715426], [-8.129541262369827, 40.95564736243838], [-8.126846316517486, 40.95564736243838], [-8.126846316517486, 40.95474904715426], [-8.12504968594925, 40.95474904715426], [-8.12504968594925, 40.95385073187014]], [[-8.12774463180159, 40.97091872226841], [-8.12774463180159, 40.971817037552526], [-8.128642947085723, 40.971817037552526], [-8.128642947085723, 40.97091872226841], [-8.12774463180159, 40.97091872226841]], [[-8.107981695550961, 40.976308613973124], [-8.107981695550961, 40.97720692925724], [-8.109778326119198, 40.97720692925724], [-8.109778326119198, 40.976308613973124], [-8.107981695550961, 40.976308613973124]], [[-8.105286749698621, 40.97451198340489], [-8.105286749698621, 40.975410298689006], [-8.106185064982725, 40.975410298689006], [-8.106185064982725, 40.97451198340489], [-8.105286749698621, 40.97451198340489]], [[-8.111574956687434, 40.97091872226841], [-8.111574956687434, 40.971817037552526], [-8.112473271971567, 40.971817037552526], [-8.112473271971567, 40.97091872226841], [-8.111574956687434, 40.97091872226841]], [[-8.11067664140333, 40.97002040698429], [-8.11067664140333, 40.97091872226841], [-8.111574956687434, 40.97091872226841], [-8.111574956687434, 40.97002040698429], [-8.11067664140333, 40.97002040698429]], [[-8.134931154074565, 40.96912209170017], [-8.134931154074565, 40.97002040698429], [-8.135829469358669, 40.97002040698429], [-8.135829469358669, 40.96912209170017], [-8.134931154074565, 40.96912209170017]], [[-8.132236208222196, 40.96822377641605], [-8.132236208222196, 40.97002040698429], [-8.134032838790432, 40.97002040698429], [-8.134032838790432, 40.96912209170017], [-8.1331345235063, 40.96912209170017], [-8.1331345235063, 40.96822377641605], [-8.132236208222196, 40.96822377641605]], [[-8.126846316517486, 40.96463051527957], [-8.126846316517486, 40.96642714584781], [-8.12774463180159, 40.96642714584781], [-8.12774463180159, 40.96822377641605], [-8.13043957765396, 40.96822377641605], [-8.13043957765396, 40.96912209170017], [-8.131337892938063, 40.96912209170017], [-8.131337892938063, 40.96732546113193], [-8.13043957765396, 40.96732546113193], [-8.13043957765396, 40.96463051527957], [-8.126846316517486, 40.96463051527957]], [[-8.128642947085723, 40.96283388471133], [-8.128642947085723, 40.963732199995455], [-8.129541262369827, 40.963732199995455], [-8.129541262369827, 40.96283388471133], [-8.128642947085723, 40.96283388471133]]]}, "id": "+191220+37899", "properties": {"count": 279, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.123253055380985, 40.98080019039372], [-8.122354740096881, 40.98080019039372], [-8.122354740096881, 40.98169850567784], [-8.123253055380985, 40.98169850567784], [-8.123253055380985, 40.983495136246084], [-8.124151370665118, 40.983495136246084], [-8.124151370665118, 40.9843934515302], [-8.12504968594925, 40.9843934515302], [-8.12504968594925, 40.982596820961966], [-8.124151370665118, 40.982596820961966], [-8.124151370665118, 40.98169850567784], [-8.123253055380985, 40.98169850567784], [-8.123253055380985, 40.98080019039372]]]}, "id": "+191221+37869", "properties": {"count": 5, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.123253055380985, 40.979003559825486], [-8.122354740096881, 40.979003559825486], [-8.122354740096881, 40.98080019039372], [-8.123253055380985, 40.98080019039372], [-8.123253055380985, 40.98169850567784], [-8.122354740096881, 40.98169850567784], [-8.122354740096881, 40.982596820961966], [-8.123253055380985, 40.982596820961966], [-8.123253055380985, 40.98169850567784], [-8.124151370665118, 40.98169850567784], [-8.124151370665118, 40.982596820961966], [-8.12504968594925, 40.982596820961966], [-8.12504968594925, 40.9843934515302], [-8.123253055380985, 40.9843934515302], [-8.123253055380985, 40.98529176681432], [-8.12504968594925, 40.98529176681432], [-8.12504968594925, 40.9843934515302], [-8.125948001233354, 40.9843934515302], [-8.125948001233354, 40.983495136246084], [-8.126846316517486, 40.983495136246084], [-8.126846316517486, 40.982596820961966], [-8.128642947085723, 40.982596820961966], [-8.128642947085723, 40.98080019039372], [-8.12774463180159, 40.98080019039372], [-8.12774463180159, 40.98169850567784], [-8.125948001233354, 40.98169850567784], [-8.125948001233354, 40.98080019039372], [-8.123253055380985, 40.98080019039372], [-8.123253055380985, 40.979003559825486]]]}, "id": "+191221+37871", "properties": {"count": 17, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.123253055380985, 40.96822377641605], [-8.122354740096881, 40.96822377641605], [-8.122354740096881, 40.96912209170017], [-8.120558109528645, 40.96912209170017], [-8.120558109528645, 40.97091872226841], [-8.121456424812749, 40.97091872226841], [-8.121456424812749, 40.97002040698429], [-8.123253055380985, 40.97002040698429], [-8.123253055380985, 40.96822377641605]]]}, "id": "+191221+37883", "properties": {"count": 5, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.122354740096881, 40.979901875109604], [-8.121456424812749, 40.979901875109604], [-8.121456424812749, 40.98080019039372], [-8.120558109528645, 40.98080019039372], [-8.120558109528645, 40.98169850567784], [-8.122354740096881, 40.98169850567784], [-8.122354740096881, 40.979901875109604]]]}, "id": "+191222+37870", "properties": {"count": 3, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.123253055380985, 40.975410298689006], [-8.121456424812749, 40.975410298689006], [-8.121456424812749, 40.976308613973124], [-8.120558109528645, 40.976308613973124], [-8.120558109528645, 40.97720692925724], [-8.123253055380985, 40.97720692925724], [-8.123253055380985, 40.975410298689006]]]}, "id": "+191222+37875", "properties": {"count": 5, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.123253055380985, 40.95834230829074], [-8.121456424812749, 40.95834230829074], [-8.121456424812749, 40.96193556942721], [-8.124151370665118, 40.96193556942721], [-8.124151370665118, 40.960138938858975], [-8.123253055380985, 40.960138938858975], [-8.123253055380985, 40.95834230829074]]]}, "id": "+191222+37894", "properties": {"count": 10, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.121456424812749, 40.98708839738256], [-8.120558109528645, 40.98708839738256], [-8.120558109528645, 40.98798671266668], [-8.121456424812749, 40.98798671266668], [-8.121456424812749, 40.98708839738256]]]}, "id": "+191223+37862", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.120558109528645, 40.9888850279508], [-8.119659794244512, 40.9888850279508], [-8.119659794244512, 40.98978334323492], [-8.120558109528645, 40.98978334323492], [-8.120558109528645, 40.9888850279508]]]}, "id": "+191224+37860", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.120558109528645, 40.975410298689006], [-8.119659794244512, 40.975410298689006], [-8.119659794244512, 40.976308613973124], [-8.120558109528645, 40.976308613973124], [-8.120558109528645, 40.975410298689006]]]}, "id": "+191224+37875", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.119659794244512, 40.99247828908728], [-8.118761478960408, 40.99247828908728], [-8.118761478960408, 40.99427491965552], [-8.119659794244512, 40.99427491965552], [-8.119659794244512, 40.99247828908728]]]}, "id": "+191225+37856", "properties": {"count": 2, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.119659794244512, 40.960138938858975], [-8.118761478960408, 40.960138938858975], [-8.118761478960408, 40.96283388471133], [-8.117863163676276, 40.96283388471133], [-8.117863163676276, 40.963732199995455], [-8.118761478960408, 40.963732199995455], [-8.118761478960408, 40.96463051527957], [-8.117863163676276, 40.96463051527957], [-8.117863163676276, 40.96552883056369], [-8.115168217823935, 40.96552883056369], [-8.115168217823935, 40.96642714584781], [-8.114269902539803, 40.96642714584781], [-8.114269902539803, 40.96732546113193], [-8.112473271971567, 40.96732546113193], [-8.112473271971567, 40.96912209170017], [-8.11337158725567, 40.96912209170017], [-8.11337158725567, 40.96822377641605], [-8.114269902539803, 40.96822377641605], [-8.114269902539803, 40.96732546113193], [-8.115168217823935, 40.96732546113193], [-8.115168217823935, 40.96642714584781], [-8.118761478960408, 40.96642714584781], [-8.118761478960408, 40.96552883056369], [-8.119659794244512, 40.96552883056369], [-8.119659794244512, 40.96642714584781], [-8.120558109528645, 40.96642714584781], [-8.120558109528645, 40.96732546113193], [-8.121456424812749, 40.96732546113193], [-8.121456424812749, 40.96912209170017], [-8.122354740096881, 40.96912209170017], [-8.122354740096881, 40.96732546113193], [-8.124151370665118, 40.96732546113193], [-8.124151370665118, 40.96552883056369], [-8.122354740096881, 40.96552883056369], [-8.122354740096881, 40.96463051527957], [-8.119659794244512, 40.96463051527957], [-8.119659794244512, 40.96283388471133], [-8.120558109528645, 40.96283388471133], [-8.120558109528645, 40.96193556942721], [-8.119659794244512, 40.96193556942721], [-8.119659794244512, 40.960138938858975]]]}, "id": "+191225+37892", "properties": {"count": 31, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.118761478960408, 40.963732199995455], [-8.117863163676276, 40.963732199995455], [-8.117863163676276, 40.96463051527957], [-8.118761478960408, 40.96463051527957], [-8.118761478960408, 40.963732199995455]]]}, "id": "+191226+37888", "properties": {"count": 1, "label": 15}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.118761478960408, 40.96193556942721], [-8.117863163676276, 40.96193556942721], [-8.117863163676276, 40.96283388471133], [-8.118761478960408, 40.96283388471133], [-8.118761478960408, 40.96193556942721]]]}, "id": "+191226+37890", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.119659794244512, 40.96732546113193], [-8.11606653310804, 40.96732546113193], [-8.11606653310804, 40.96822377641605], [-8.119659794244512, 40.96822377641605], [-8.119659794244512, 40.96732546113193]]]}, "id": "+191228+37884", "properties": {"count": 4, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.11606653310804, 40.983495136246084], [-8.115168217823935, 40.983495136246084], [-8.115168217823935, 40.9843934515302], [-8.11606653310804, 40.9843934515302], [-8.11606653310804, 40.983495136246084]]]}, "id": "+191229+37866", "properties": {"count": 1, "label": 13}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.115168217823935, 40.98080019039372], [-8.114269902539803, 40.98080019039372], [-8.114269902539803, 40.98169850567784], [-8.115168217823935, 40.98169850567784], [-8.115168217823935, 40.98080019039372]]]}, "id": "+191230+37869", "properties": {"count": 1, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.115168217823935, 40.97810524454137], [-8.114269902539803, 40.97810524454137], [-8.114269902539803, 40.979003559825486], [-8.115168217823935, 40.979003559825486], [-8.115168217823935, 40.97810524454137]]]}, "id": "+191230+37872", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.11606653310804, 40.97451198340489], [-8.114269902539803, 40.97451198340489], [-8.114269902539803, 40.975410298689006], [-8.11606653310804, 40.975410298689006], [-8.11606653310804, 40.976308613973124], [-8.116964848392172, 40.976308613973124], [-8.116964848392172, 40.975410298689006], [-8.11606653310804, 40.975410298689006], [-8.11606653310804, 40.97451198340489]]]}, "id": "+191230+37876", "properties": {"count": 3, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.114269902539803, 40.97091872226841], [-8.11337158725567, 40.97091872226841], [-8.11337158725567, 40.971817037552526], [-8.114269902539803, 40.971817037552526], [-8.114269902539803, 40.972715352836644], [-8.11337158725567, 40.972715352836644], [-8.11337158725567, 40.97361366812077], [-8.115168217823935, 40.97361366812077], [-8.115168217823935, 40.97451198340489], [-8.117863163676276, 40.97451198340489], [-8.117863163676276, 40.975410298689006], [-8.118761478960408, 40.975410298689006], [-8.118761478960408, 40.976308613973124], [-8.119659794244512, 40.976308613973124], [-8.119659794244512, 40.975410298689006], [-8.120558109528645, 40.975410298689006], [-8.120558109528645, 40.97451198340489], [-8.119659794244512, 40.97451198340489], [-8.119659794244512, 40.97361366812077], [-8.118761478960408, 40.97361366812077], [-8.118761478960408, 40.972715352836644], [-8.11606653310804, 40.972715352836644], [-8.11606653310804, 40.97091872226841], [-8.115168217823935, 40.97091872226841], [-8.115168217823935, 40.971817037552526], [-8.114269902539803, 40.971817037552526], [-8.114269902539803, 40.97091872226841]]]}, "id": "+191231+37880", "properties": {"count": 19, "label": 14}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.114269902539803, 40.98169850567784], [-8.111574956687434, 40.98169850567784], [-8.111574956687434, 40.982596820961966], [-8.109778326119198, 40.982596820961966], [-8.109778326119198, 40.983495136246084], [-8.108880010835094, 40.983495136246084], [-8.108880010835094, 40.9843934515302], [-8.109778326119198, 40.9843934515302], [-8.109778326119198, 40.983495136246084], [-8.111574956687434, 40.983495136246084], [-8.111574956687434, 40.9843934515302], [-8.115168217823935, 40.9843934515302], [-8.115168217823935, 40.983495136246084], [-8.114269902539803, 40.983495136246084], [-8.114269902539803, 40.98169850567784]]]}, "id": "+191233+37868", "properties": {"count": 13, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.112473271971567, 40.976308613973124], [-8.111574956687434, 40.976308613973124], [-8.111574956687434, 40.97720692925724], [-8.112473271971567, 40.97720692925724], [-8.112473271971567, 40.97810524454137], [-8.11337158725567, 40.97810524454137], [-8.11337158725567, 40.97720692925724], [-8.112473271971567, 40.97720692925724], [-8.112473271971567, 40.976308613973124]]]}, "id": "+191233+37874", "properties": {"count": 2, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.108880010835094, 40.97361366812077], [-8.107981695550961, 40.97361366812077], [-8.107981695550961, 40.97451198340489], [-8.108880010835094, 40.97451198340489], [-8.108880010835094, 40.97361366812077]]]}, "id": "+191237+37877", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.107981695550961, 40.983495136246084], [-8.107083380266857, 40.983495136246084], [-8.107083380266857, 40.98529176681432], [-8.107981695550961, 40.98529176681432], [-8.107981695550961, 40.983495136246084]]]}, "id": "+191238+37866", "properties": {"count": 2, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.106185064982725, 40.98529176681432], [-8.105286749698621, 40.98529176681432], [-8.105286749698621, 40.98619008209844], [-8.106185064982725, 40.98619008209844], [-8.106185064982725, 40.98529176681432]]]}, "id": "+191240+37864", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.106185064982725, 40.982596820961966], [-8.104388434414489, 40.982596820961966], [-8.104388434414489, 40.983495136246084], [-8.105286749698621, 40.983495136246084], [-8.105286749698621, 40.9843934515302], [-8.106185064982725, 40.9843934515302], [-8.106185064982725, 40.982596820961966]]]}, "id": "+191241+37867", "properties": {"count": 3, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.105286749698621, 40.979003559825486], [-8.103490119130356, 40.979003559825486], [-8.103490119130356, 40.979901875109604], [-8.105286749698621, 40.979901875109604], [-8.105286749698621, 40.979003559825486]]]}, "id": "+191242+37871", "properties": {"count": 2, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.102591803846252, 40.9888850279508], [-8.10169348856212, 40.9888850279508], [-8.10169348856212, 40.98978334323492], [-8.102591803846252, 40.98978334323492], [-8.102591803846252, 40.9888850279508]]]}, "id": "+191244+37860", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.102591803846252, 40.991579973803155], [-8.100795173278016, 40.991579973803155], [-8.100795173278016, 40.99247828908728], [-8.102591803846252, 40.99247828908728], [-8.102591803846252, 40.991579973803155]]]}, "id": "+191245+37857", "properties": {"count": 2, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.10169348856212, 40.975410298689006], [-8.100795173278016, 40.975410298689006], [-8.100795173278016, 40.979003559825486], [-8.099896857993883, 40.979003559825486], [-8.099896857993883, 40.98080019039372], [-8.100795173278016, 40.98080019039372], [-8.100795173278016, 40.979003559825486], [-8.102591803846252, 40.979003559825486], [-8.102591803846252, 40.97810524454137], [-8.10169348856212, 40.97810524454137], [-8.10169348856212, 40.975410298689006]]]}, "id": "+191245+37875", "properties": {"count": 7, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.10169348856212, 40.99247828908728], [-8.099896857993883, 40.99247828908728], [-8.099896857993883, 40.9933766043714], [-8.09899854270978, 40.9933766043714], [-8.09899854270978, 40.995173234939635], [-8.099896857993883, 40.995173234939635], [-8.099896857993883, 40.99427491965552], [-8.100795173278016, 40.99427491965552], [-8.100795173278016, 40.9933766043714], [-8.10169348856212, 40.9933766043714], [-8.10169348856212, 40.99247828908728]]]}, "id": "+191246+37856", "properties": {"count": 5, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.09899854270978, 40.98529176681432], [-8.098100227425647, 40.98529176681432], [-8.098100227425647, 40.98619008209844], [-8.09899854270978, 40.98619008209844], [-8.09899854270978, 40.98529176681432]]]}, "id": "+191248+37864", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.09899854270978, 40.982596820961966], [-8.098100227425647, 40.982596820961966], [-8.098100227425647, 40.983495136246084], [-8.097201912141543, 40.983495136246084], [-8.097201912141543, 40.9843934515302], [-8.098100227425647, 40.9843934515302], [-8.098100227425647, 40.98529176681432], [-8.09899854270978, 40.98529176681432], [-8.09899854270978, 40.982596820961966]]]}, "id": "+191248+37867", "properties": {"count": 4, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.099896857993883, 40.98080019039372], [-8.098100227425647, 40.98080019039372], [-8.098100227425647, 40.98169850567784], [-8.097201912141543, 40.98169850567784], [-8.097201912141543, 40.983495136246084], [-8.09630359685741, 40.983495136246084], [-8.09630359685741, 40.982596820961966], [-8.095405281573306, 40.982596820961966], [-8.095405281573306, 40.9843934515302], [-8.09630359685741, 40.9843934515302], [-8.09630359685741, 40.98529176681432], [-8.095405281573306, 40.98529176681432], [-8.095405281573306, 40.98619008209844], [-8.09630359685741, 40.98619008209844], [-8.09630359685741, 40.98529176681432], [-8.097201912141543, 40.98529176681432], [-8.097201912141543, 40.983495136246084], [-8.098100227425647, 40.983495136246084], [-8.098100227425647, 40.98169850567784], [-8.099896857993883, 40.98169850567784], [-8.099896857993883, 40.98080019039372]]]}, "id": "+191248+37869", "properties": {"count": 9, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.097201912141543, 41.00415638778083], [-8.09630359685741, 41.00415638778083], [-8.09630359685741, 41.00505470306495], [-8.097201912141543, 41.00505470306495], [-8.097201912141543, 41.00415638778083]]]}, "id": "+191250+37843", "properties": {"count": 1, "label": 2}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.095405281573306, 40.98708839738256], [-8.094506966289174, 40.98708839738256], [-8.094506966289174, 40.98798671266668], [-8.095405281573306, 40.98798671266668], [-8.095405281573306, 40.98708839738256]]]}, "id": "+191252+37862", "properties": {"count": 1, "label": 3}}, {"type": "Feature", "geometry": {"geodesic": false, "type": "Polygon", "coordinates": [[[-8.095405281573306, 40.983495136246084], [-8.094506966289174, 40.983495136246084], [-8.094506966289174, 40.9843934515302], [-8.095405281573306, 40.9843934515302], [-8.095405281573306, 40.983495136246084]]]}, "id": "+191252+37866", "properties": {"count": 1, "label": 3}}]}}
+{"type": "update", "content": "Here are the disturbance alerts in Aveiro summarized by land cover:\n\n1. **Region: PRT.1.4.20_1**\n - Natural forests: 509 alerts\n - Natural short vegetation: 18 alerts\n - Crop: 76 alerts\n - Built: 1851 alerts\n - Non-natural tree cover: 92 alerts\n - Non-natural short vegetation: 15 alerts\n\n2. **Region: PRT.1.4.2_1**\n - Natural forests: 26,429 alerts\n - Natural short vegetation: 6,942 alerts\n - Crop: 2,551 alerts\n - Built: 9,813 alerts\n - Non-natural tree cover: 10,039 alerts\n - Non-natural short vegetation: 1,274 alerts\n - Non-natural bare: 17 alerts\n\n3. **Region: PRT.1.5.2_1**\n - Natural forests: 601 alerts\n - Natural short vegetation: 6,302 alerts\n - Natural water: 5,805 alerts\n - Bare: 333 alerts\n - Wet natural forests: 1,912 alerts\n - Wet natural short vegetation: 8,570 alerts\n - Crop: 6,850 alerts\n - Built: 15,600 alerts\n - Non-natural tree cover: 802 alerts\n - Non-natural short vegetation: 109 alerts\n - Wet non-natural tree cover: 515 alerts\n - Wet non-natural short vegetation: 377 alerts\n - Non-natural bare: 333 alerts\n\nIf you need more specific information or further analysis, feel free to ask!"}
diff --git a/yarn.lock b/yarn.lock
index 8795593..3449c7e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -226,6 +226,28 @@
"@babel/helper-string-parser" "^7.25.9"
"@babel/helper-validator-identifier" "^7.25.9"
+"@bundled-es-modules/cookie@^2.0.1":
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/@bundled-es-modules/cookie/-/cookie-2.0.1.tgz#b41376af6a06b3e32a15241d927b840a9b4de507"
+ integrity sha512-8o+5fRPLNbjbdGRRmJj3h6Hh1AQJf2dk3qQ/5ZFb+PXkRNiSoMGGUKlsgLfrxneb72axVJyIYji64E2+nNfYyw==
+ dependencies:
+ cookie "^0.7.2"
+
+"@bundled-es-modules/statuses@^1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@bundled-es-modules/statuses/-/statuses-1.0.1.tgz#761d10f44e51a94902c4da48675b71a76cc98872"
+ integrity sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==
+ dependencies:
+ statuses "^2.0.1"
+
+"@bundled-es-modules/tough-cookie@^0.1.6":
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/@bundled-es-modules/tough-cookie/-/tough-cookie-0.1.6.tgz#fa9cd3cedfeecd6783e8b0d378b4a99e52bde5d3"
+ integrity sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==
+ dependencies:
+ "@types/tough-cookie" "^4.0.5"
+ tough-cookie "^4.1.4"
+
"@chakra-ui/react@^3.2.1":
version "3.2.3"
resolved "https://registry.npmjs.org/@chakra-ui/react/-/react-3.2.3.tgz"
@@ -583,6 +605,39 @@
resolved "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz"
integrity sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==
+"@inquirer/confirm@^5.0.0":
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-5.1.0.tgz#061cd0790c8debe092353589a501211b0d6c53ef"
+ integrity sha512-osaBbIMEqVFjTX5exoqPXs6PilWQdjaLhGtMDXMXg/yxkHXNq43GlxGyTA35lK2HpzUgDN+Cjh/2AmqCN0QJpw==
+ dependencies:
+ "@inquirer/core" "^10.1.1"
+ "@inquirer/type" "^3.0.1"
+
+"@inquirer/core@^10.1.1":
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-10.1.1.tgz#801e82649fb64bcb2b5e4667397ff8c25bccebab"
+ integrity sha512-rmZVXy9iZvO3ZStEe/ayuuwIJ23LSF13aPMlLMTQARX6lGUBDHGV8UB5i9MRrfy0+mZwt5/9bdy8llszSD3NQA==
+ dependencies:
+ "@inquirer/figures" "^1.0.8"
+ "@inquirer/type" "^3.0.1"
+ ansi-escapes "^4.3.2"
+ cli-width "^4.1.0"
+ mute-stream "^2.0.0"
+ signal-exit "^4.1.0"
+ strip-ansi "^6.0.1"
+ wrap-ansi "^6.2.0"
+ yoctocolors-cjs "^2.1.2"
+
+"@inquirer/figures@^1.0.8":
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/@inquirer/figures/-/figures-1.0.8.tgz#d9e414a1376a331a0e71b151fea27c48845788b0"
+ integrity sha512-tKd+jsmhq21AP1LhexC0pPwsCxEhGgAkg28byjJAd+xhmIs8LUX8JbUc3vBf3PhLxWiB5EvyBE5X7JSPAqMAqg==
+
+"@inquirer/type@^3.0.1":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-3.0.1.tgz#619ce9f65c3e114d8e39c41822bed3440d20b478"
+ integrity sha512-+ksJMIy92sOAiAccGpcKZUc3bYO07cADnscIxHBknEm3uNts3movSmBofc1908BNy5edKscxYeAdaX1NXkHS6A==
+
"@internationalized/date@3.5.6":
version "3.5.6"
resolved "https://registry.npmjs.org/@internationalized/date/-/date-3.5.6.tgz"
@@ -694,6 +749,36 @@
rw "^1.3.3"
tinyqueue "^3.0.0"
+"@mswjs/interceptors@^0.37.0":
+ version "0.37.3"
+ resolved "https://registry.yarnpkg.com/@mswjs/interceptors/-/interceptors-0.37.3.tgz#1ed2460c2f056ffad2a179a119bb755ac50140a6"
+ integrity sha512-USvgCL/uOGFtVa6SVyRrC8kIAedzRohxIXN5LISlg5C5vLZCn7dgMFVSNhSF9cuBEFrm/O2spDWEZeMnw4ZXYg==
+ dependencies:
+ "@open-draft/deferred-promise" "^2.2.0"
+ "@open-draft/logger" "^0.3.0"
+ "@open-draft/until" "^2.0.0"
+ is-node-process "^1.2.0"
+ outvariant "^1.4.3"
+ strict-event-emitter "^0.5.1"
+
+"@open-draft/deferred-promise@^2.2.0":
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz#4a822d10f6f0e316be4d67b4d4f8c9a124b073bd"
+ integrity sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==
+
+"@open-draft/logger@^0.3.0":
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/@open-draft/logger/-/logger-0.3.0.tgz#2b3ab1242b360aa0adb28b85f5d7da1c133a0954"
+ integrity sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==
+ dependencies:
+ is-node-process "^1.2.0"
+ outvariant "^1.4.0"
+
+"@open-draft/until@^2.0.0", "@open-draft/until@^2.1.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@open-draft/until/-/until-2.1.0.tgz#0acf32f470af2ceaf47f095cdecd40d68666efda"
+ integrity sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==
+
"@pandacss/is-valid-prop@0.41.0":
version "0.41.0"
resolved "https://registry.npmjs.org/@pandacss/is-valid-prop/-/is-valid-prop-0.41.0.tgz"
@@ -860,6 +945,11 @@
dependencies:
"@babel/types" "^7.20.7"
+"@types/cookie@^0.6.0":
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.6.0.tgz#eac397f28bf1d6ae0ae081363eca2f425bedf0d5"
+ integrity sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==
+
"@types/debug@^4.0.0":
version "4.1.12"
resolved "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz"
@@ -966,6 +1056,11 @@
"@types/prop-types" "*"
csstype "^3.0.2"
+"@types/statuses@^2.0.4":
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/@types/statuses/-/statuses-2.0.5.tgz#f61ab46d5352fd73c863a1ea4e1cef3b0b51ae63"
+ integrity sha512-jmIUGWrAiwu3dZpxntxieC+1n/5c3mjrImkmOSQ2NC5uP6cYO4aAZDdSmRcI5C1oiTmqlZGHC+/NmJrKogbP5A==
+
"@types/supercluster@^7.1.3":
version "7.1.3"
resolved "https://registry.npmjs.org/@types/supercluster/-/supercluster-7.1.3.tgz"
@@ -973,6 +1068,11 @@
dependencies:
"@types/geojson" "*"
+"@types/tough-cookie@^4.0.5":
+ version "4.0.5"
+ resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.5.tgz#cb6e2a691b70cb177c6e3ae9c1d2e8b2ea8cd304"
+ integrity sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==
+
"@types/unist@*", "@types/unist@^3.0.0":
version "3.0.3"
resolved "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz"
@@ -1705,7 +1805,19 @@ ajv@^6.12.4:
json-schema-traverse "^0.4.1"
uri-js "^4.2.2"
-ansi-styles@^4.1.0:
+ansi-escapes@^4.3.2:
+ version "4.3.2"
+ resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
+ integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
+ dependencies:
+ type-fest "^0.21.3"
+
+ansi-regex@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
+ integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
+
+ansi-styles@^4.0.0, ansi-styles@^4.1.0:
version "4.3.0"
resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
@@ -1931,6 +2043,20 @@ character-reference-invalid@^2.0.0:
resolved "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz"
integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==
+cli-width@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-4.1.0.tgz#42daac41d3c254ef38ad8ac037672130173691c5"
+ integrity sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==
+
+cliui@^8.0.1:
+ version "8.0.1"
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"
+ integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==
+ dependencies:
+ string-width "^4.2.0"
+ strip-ansi "^6.0.1"
+ wrap-ansi "^7.0.0"
+
color-convert@^2.0.1:
version "2.0.1"
resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
@@ -1968,6 +2094,11 @@ convert-source-map@^2.0.0:
resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz"
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
+cookie@^0.7.2:
+ version "0.7.2"
+ resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.2.tgz#556369c472a2ba910f2979891b526b3436237ed7"
+ integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==
+
cosmiconfig@^7.0.0:
version "7.1.0"
resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz"
@@ -2337,6 +2468,11 @@ electron-to-chromium@^1.5.41:
resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.71.tgz"
integrity sha512-dB68l59BI75W1BUGVTAEJy45CEVuEGy9qPVVQ8pnHyHMn36PLPPoE1mjLH+lo9rKulO3HC2OhbACI/8tCqJBcA==
+emoji-regex@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+ integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+
error-ex@^1.3.1:
version "1.3.2"
resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
@@ -2491,7 +2627,7 @@ esbuild@^0.24.0:
"@esbuild/win32-ia32" "0.24.0"
"@esbuild/win32-x64" "0.24.0"
-escalade@^3.2.0:
+escalade@^3.1.1, escalade@^3.2.0:
version "3.2.0"
resolved "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz"
integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==
@@ -2748,6 +2884,11 @@ geojson-vt@^4.0.2:
resolved "https://registry.npmjs.org/geojson-vt/-/geojson-vt-4.0.2.tgz"
integrity sha512-AV9ROqlNqoZEIJGfm1ncNjEXfkz2hdFlZf0qkVfmkwdKa8vj7H16YUOT81rJw1rdFhyEDlN2Tds91p/glzbl5A==
+get-caller-file@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
+ integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
+
get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4:
version "1.2.4"
resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz"
@@ -2827,6 +2968,11 @@ gopd@^1.0.1, gopd@^1.1.0:
resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz"
integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==
+graphql@^16.8.1:
+ version "16.10.0"
+ resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.10.0.tgz#24c01ae0af6b11ea87bf55694429198aaa8e220c"
+ integrity sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==
+
has-bigints@^1.0.2:
version "1.0.2"
resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz"
@@ -2898,6 +3044,11 @@ hast-util-whitespace@^3.0.0:
dependencies:
"@types/hast" "^3.0.0"
+headers-polyfill@^4.0.2:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/headers-polyfill/-/headers-polyfill-4.0.3.tgz#922a0155de30ecc1f785bcf04be77844ca95ad07"
+ integrity sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==
+
hoist-non-react-statics@^3.3.1:
version "3.3.2"
resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz"
@@ -3067,6 +3218,11 @@ is-finalizationregistry@^1.1.0:
dependencies:
call-bind "^1.0.7"
+is-fullwidth-code-point@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+ integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
+
is-generator-function@^1.0.10:
version "1.0.10"
resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz"
@@ -3096,6 +3252,11 @@ is-negative-zero@^2.0.3:
resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz"
integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==
+is-node-process@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/is-node-process/-/is-node-process-1.2.0.tgz#ea02a1b90ddb3934a19aea414e88edef7e11d134"
+ integrity sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==
+
is-number-object@^1.1.0:
version "1.1.0"
resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.0.tgz"
@@ -3694,11 +3855,40 @@ ms@^2.1.3:
resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
+msw@^2.7.0:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/msw/-/msw-2.7.0.tgz#d13ff87f7e018fc4c359800ff72ba5017033fb56"
+ integrity sha512-BIodwZ19RWfCbYTxWTUfTXc+sg4OwjCAgxU1ZsgmggX/7S3LdUifsbUPJs61j0rWb19CZRGY5if77duhc0uXzw==
+ dependencies:
+ "@bundled-es-modules/cookie" "^2.0.1"
+ "@bundled-es-modules/statuses" "^1.0.1"
+ "@bundled-es-modules/tough-cookie" "^0.1.6"
+ "@inquirer/confirm" "^5.0.0"
+ "@mswjs/interceptors" "^0.37.0"
+ "@open-draft/deferred-promise" "^2.2.0"
+ "@open-draft/until" "^2.1.0"
+ "@types/cookie" "^0.6.0"
+ "@types/statuses" "^2.0.4"
+ graphql "^16.8.1"
+ headers-polyfill "^4.0.2"
+ is-node-process "^1.2.0"
+ outvariant "^1.4.3"
+ path-to-regexp "^6.3.0"
+ picocolors "^1.1.1"
+ strict-event-emitter "^0.5.1"
+ type-fest "^4.26.1"
+ yargs "^17.7.2"
+
murmurhash-js@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz"
integrity sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==
+mute-stream@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-2.0.0.tgz#a5446fc0c512b71c83c44d908d5c7b7b4c493b2b"
+ integrity sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==
+
nanoid@^3.3.7:
version "3.3.8"
resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz"
@@ -3779,6 +3969,11 @@ optionator@^0.9.3:
type-check "^0.4.0"
word-wrap "^1.2.5"
+outvariant@^1.4.0, outvariant@^1.4.3:
+ version "1.4.3"
+ resolved "https://registry.yarnpkg.com/outvariant/-/outvariant-1.4.3.tgz#221c1bfc093e8fec7075497e7799fdbf43d14873"
+ integrity sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==
+
p-limit@^3.0.2:
version "3.1.0"
resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"
@@ -3839,6 +4034,11 @@ path-parse@^1.0.7:
resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
+path-to-regexp@^6.3.0:
+ version "6.3.0"
+ resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.3.0.tgz#2b6a26a337737a8e1416f9272ed0766b1c0389f4"
+ integrity sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==
+
path-type@^4.0.0:
version "4.0.0"
resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
@@ -3922,11 +4122,23 @@ proxy-memoize@3.0.1:
dependencies:
proxy-compare "^3.0.0"
-punycode@^2.1.0:
+psl@^1.1.33:
+ version "1.15.0"
+ resolved "https://registry.yarnpkg.com/psl/-/psl-1.15.0.tgz#bdace31896f1d97cec6a79e8224898ce93d974c6"
+ integrity sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==
+ dependencies:
+ punycode "^2.3.1"
+
+punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.1:
version "2.3.1"
resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz"
integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==
+querystringify@^2.1.1:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
+ integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==
+
quickselect@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz"
@@ -4040,6 +4252,16 @@ remark-rehype@^11.0.0:
unified "^11.0.0"
vfile "^6.0.0"
+require-directory@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
+ integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
+
+requires-port@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
+ integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==
+
resolve-from@^4.0.0:
version "4.0.0"
resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
@@ -4198,6 +4420,11 @@ side-channel@^1.0.4, side-channel@^1.0.6:
get-intrinsic "^1.2.4"
object-inspect "^1.13.1"
+signal-exit@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
+ integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
+
sort-asc@^0.2.0:
version "0.2.0"
resolved "https://registry.npmjs.org/sort-asc/-/sort-asc-0.2.0.tgz"
@@ -4242,6 +4469,25 @@ split-string@^3.0.1:
dependencies:
extend-shallow "^3.0.0"
+statuses@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63"
+ integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==
+
+strict-event-emitter@^0.5.1:
+ version "0.5.1"
+ resolved "https://registry.yarnpkg.com/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz#1602ece81c51574ca39c6815e09f1a3e8550bd93"
+ integrity sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==
+
+string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
+ integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
+ dependencies:
+ emoji-regex "^8.0.0"
+ is-fullwidth-code-point "^3.0.0"
+ strip-ansi "^6.0.1"
+
string.prototype.matchall@^4.0.11:
version "4.0.11"
resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz"
@@ -4304,6 +4550,13 @@ stringify-entities@^4.0.0:
character-entities-html4 "^2.0.0"
character-entities-legacy "^3.0.0"
+strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+ integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+ dependencies:
+ ansi-regex "^5.0.1"
+
strip-json-comments@^3.1.1:
version "3.1.1"
resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
@@ -4350,6 +4603,16 @@ tinyqueue@^3.0.0:
resolved "https://registry.npmjs.org/tinyqueue/-/tinyqueue-3.0.0.tgz"
integrity sha512-gRa9gwYU3ECmQYv3lslts5hxuIa90veaEcxDYuu3QGOIAEM2mOZkVHp48ANJuu1CURtRdHKUBY5Lm1tHV+sD4g==
+tough-cookie@^4.1.4:
+ version "4.1.4"
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.4.tgz#945f1461b45b5a8c76821c33ea49c3ac192c1b36"
+ integrity sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==
+ dependencies:
+ psl "^1.1.33"
+ punycode "^2.1.1"
+ universalify "^0.2.0"
+ url-parse "^1.5.3"
+
trim-lines@^3.0.0:
version "3.0.1"
resolved "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz"
@@ -4372,6 +4635,16 @@ type-check@^0.4.0, type-check@~0.4.0:
dependencies:
prelude-ls "^1.2.1"
+type-fest@^0.21.3:
+ version "0.21.3"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
+ integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
+
+type-fest@^4.26.1:
+ version "4.30.2"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.30.2.tgz#d94429edde1f7deacf554741650aab394197a4cc"
+ integrity sha512-UJShLPYi1aWqCdq9HycOL/gwsuqda1OISdBO3t8RlXQC4QvtuIz4b5FCfe2dQIWEpmlRExKmcTBfP1r9bhY7ig==
+
typed-array-buffer@^1.0.2:
version "1.0.2"
resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz"
@@ -4500,6 +4773,11 @@ unist-util-visit@^5.0.0:
unist-util-is "^6.0.0"
unist-util-visit-parents "^6.0.0"
+universalify@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0"
+ integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==
+
update-browserslist-db@^1.1.1:
version "1.1.1"
resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz"
@@ -4520,6 +4798,19 @@ uri-js@^4.2.2:
dependencies:
punycode "^2.1.0"
+url-parse@^1.5.3:
+ version "1.5.10"
+ resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1"
+ integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==
+ dependencies:
+ querystringify "^2.1.1"
+ requires-port "^1.0.0"
+
+uuid@^11.0.3:
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-11.0.3.tgz#248451cac9d1a4a4128033e765d137e2b2c49a3d"
+ integrity sha512-d0z310fCWv5dJwnX1Y/MncBAqGMKEzlBb1AOf7z9K8ALnd0utBX/msg/fA0+sbyN1ihbMsLhrBlnl1ak7Wa0rg==
+
vfile-message@^4.0.0:
version "4.0.2"
resolved "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz"
@@ -4626,6 +4917,29 @@ word-wrap@^1.2.5:
resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz"
integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
+wrap-ansi@^6.2.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
+ integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
+ dependencies:
+ ansi-styles "^4.0.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
+
+wrap-ansi@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
+ integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
+ dependencies:
+ ansi-styles "^4.0.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
+
+y18n@^5.0.5:
+ version "5.0.8"
+ resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
+ integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
+
yallist@^3.0.2:
version "3.1.1"
resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz"
@@ -4636,11 +4950,34 @@ yaml@^1.10.0:
resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz"
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
+yargs-parser@^21.1.1:
+ version "21.1.1"
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
+ integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
+
+yargs@^17.7.2:
+ version "17.7.2"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
+ integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
+ dependencies:
+ cliui "^8.0.1"
+ escalade "^3.1.1"
+ get-caller-file "^2.0.5"
+ require-directory "^2.1.1"
+ string-width "^4.2.3"
+ y18n "^5.0.5"
+ yargs-parser "^21.1.1"
+
yocto-queue@^0.1.0:
version "0.1.0"
resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
+yoctocolors-cjs@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz#f4b905a840a37506813a7acaa28febe97767a242"
+ integrity sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==
+
zwitch@^2.0.0:
version "2.0.4"
resolved "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz"